Initial commit

This commit is contained in:
2024-09-29 20:42:32 -04:00
commit 542de46db8
12 changed files with 778 additions and 0 deletions

27
CategoryPanelBase.cs Normal file
View File

@@ -0,0 +1,27 @@
using System.Windows;
using System.Windows.Controls;
namespace ChrisKaczor.Wpf.Windows;
public class CategoryPanelBase : UserControl
{
protected Window? ParentWindow;
protected CategoryPanelBase()
{
}
public virtual string? CategoryName => null;
protected bool HasLoaded { get; private set; }
public virtual void LoadPanel(Window parentWindow)
{
ParentWindow = parentWindow;
}
protected void MarkLoaded()
{
HasLoaded = true;
}
}