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