21 lines
431 B
C#
21 lines
431 B
C#
using System.Linq;
|
|
using System.Windows;
|
|
using Cvte.EasiNote;
|
|
using Cvte.Windows.Input;
|
|
|
|
namespace BetterEN5.UI
|
|
{
|
|
public class BoardMenuSettings : BoardEditMenuItem
|
|
{
|
|
public BoardMenuSettings()
|
|
{
|
|
SortHint = 999;
|
|
Command = new DelegateCommand(() =>
|
|
{
|
|
BetterSeewoMainWindow.ShowWindow();
|
|
});
|
|
Predicate = _ => true;
|
|
}
|
|
}
|
|
}
|