mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-02-04 01:25:37 -05:00
More cleanup and UI work
This commit is contained in:
@@ -1,16 +1,19 @@
|
||||
using FeedCenter.Properties;
|
||||
using System.Linq;
|
||||
using System.Linq;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using FeedCenter.Properties;
|
||||
|
||||
namespace FeedCenter.Options;
|
||||
|
||||
public partial class DisplayOptionsPanel
|
||||
{
|
||||
public DisplayOptionsPanel()
|
||||
public DisplayOptionsPanel(Window parentWindow) : base(parentWindow)
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public override string CategoryName => Properties.Resources.optionCategoryDisplay;
|
||||
|
||||
public override void LoadPanel()
|
||||
{
|
||||
base.LoadPanel();
|
||||
@@ -23,8 +26,6 @@ public partial class DisplayOptionsPanel
|
||||
MarkLoaded();
|
||||
}
|
||||
|
||||
public override string CategoryName => Properties.Resources.optionCategoryDisplay;
|
||||
|
||||
private void LockWindowCheckBox_Click(object sender, System.Windows.RoutedEventArgs e)
|
||||
{
|
||||
if (!HasLoaded) return;
|
||||
|
||||
Reference in New Issue
Block a user