19 lines
402 B
C#
19 lines
402 B
C#
using Cvte.EasiNote;
|
|
using Cvte.Windows.Input;
|
|
|
|
namespace BetterEN5.UI
|
|
{
|
|
public class ExtendedTitleBarSettings : HeadToolBarItem
|
|
{
|
|
public ExtendedTitleBarSettings()
|
|
{
|
|
SortHint = 999;
|
|
Command = new DelegateCommand(() =>
|
|
{
|
|
BetterSeewoMainWindow.ShowWindow();
|
|
});
|
|
Predicate = _ => true;
|
|
}
|
|
}
|
|
}
|