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

13 lines
338 B
C#

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