diff --git a/DomainModel/Profile/FloatingPanel.cs b/DomainModel/Profile/FloatingPanel.cs index 8c91a7a..2a6767e 100644 --- a/DomainModel/Profile/FloatingPanel.cs +++ b/DomainModel/Profile/FloatingPanel.cs @@ -8,7 +8,7 @@ namespace MSFSPopoutPanelManager.DomainModel.Profile { public FloatingPanel() { - PropertyChanged += FloatingPanel_PropertyChanged; ; + PropertyChanged += FloatingPanel_PropertyChanged; } private void FloatingPanel_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) diff --git a/DomainModel/Profile/SwitchWindowConfig.cs b/DomainModel/Profile/SwitchWindowConfig.cs index 82d1057..cbc0aa5 100644 --- a/DomainModel/Profile/SwitchWindowConfig.cs +++ b/DomainModel/Profile/SwitchWindowConfig.cs @@ -1,9 +1,19 @@ -using MSFSPopoutPanelManager.Shared; +using System.Collections.Generic; +using MSFSPopoutPanelManager.Shared; namespace MSFSPopoutPanelManager.DomainModel.Profile { public class SwitchWindowConfig : ObservableObject { public bool IsEnabled { get; set; } = false; + + public List Panels { get; set; } + } + + public class SwitchWindowPanel + { + public string DisplayName { get; set; } + + public string PanelCaption { get; set; } } } \ No newline at end of file diff --git a/MainApp/AppUserControl/ProfileCard.xaml b/MainApp/AppUserControl/ProfileCard.xaml index 7974c6f..1e0db90 100644 --- a/MainApp/AppUserControl/ProfileCard.xaml +++ b/MainApp/AppUserControl/ProfileCard.xaml @@ -267,7 +267,7 @@ Add a virtual keyboard NumPad - + - -