Files
FeedCenter/Application/Options/AboutOptionsPanel.xaml.cs

13 lines
299 B
C#

using System.Windows;
namespace FeedCenter.Options;
public partial class AboutOptionsPanel
{
public AboutOptionsPanel(Window parentWindow) : base(parentWindow)
{
InitializeComponent();
}
public override string CategoryName => Properties.Resources.optionCategoryAbout;
}