WIP Panel Manager

This commit is contained in:
Jonathan Jenne
2019-03-08 15:00:47 +01:00
parent 3ee971fd14
commit e7e6d73411
13 changed files with 388 additions and 35 deletions

View File

@@ -1,4 +1,5 @@
Imports DevExpress.XtraBars.Ribbon
Imports DevExpress.XtraBars.Docking
Imports DevExpress.XtraBars.Ribbon
Imports DigitalData.Modules.Logging
''' <summary>
@@ -10,6 +11,8 @@ Imports DigitalData.Modules.Logging
'''
''' ...
''' End Class
'''
''' Only BaseRibbonForms can have panels attached to it!
''' </summary>
Public Class BaseRibbonForm
Inherits RibbonForm
@@ -30,6 +33,10 @@ Public Class BaseRibbonForm
' depends on a global var like My.LogConfig
' you might need to check for its existence with ?
End Sub
Public Overridable Function GetInitialPanels() As List(Of PanelInfo)
Return New List(Of PanelInfo)
End Function
End Class