mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-31 01:25:38 -05:00
More cleanup and UI work
This commit is contained in:
@@ -1,19 +1,27 @@
|
||||
using System.Windows.Controls;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
|
||||
namespace FeedCenter.Options;
|
||||
|
||||
public class OptionsPanelBase : UserControl
|
||||
{
|
||||
public bool HasLoaded { get; private set; }
|
||||
protected readonly Window ParentWindow;
|
||||
|
||||
protected OptionsPanelBase(Window parentWindow)
|
||||
{
|
||||
ParentWindow = parentWindow;
|
||||
}
|
||||
|
||||
public virtual string CategoryName => null;
|
||||
|
||||
protected bool HasLoaded { get; private set; }
|
||||
|
||||
public virtual void LoadPanel()
|
||||
{
|
||||
}
|
||||
|
||||
public void MarkLoaded()
|
||||
protected void MarkLoaded()
|
||||
{
|
||||
HasLoaded = true;
|
||||
}
|
||||
|
||||
public virtual string CategoryName => null;
|
||||
}
|
||||
Reference in New Issue
Block a user