mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
27 lines
502 B
C#
27 lines
502 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace FeedCenter.Options;
|
|
|
|
public class OptionsPanelBase : UserControl
|
|
{
|
|
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()
|
|
{
|
|
}
|
|
|
|
protected void MarkLoaded()
|
|
{
|
|
HasLoaded = true;
|
|
}
|
|
} |