コード例 #1
0
ファイル: Hotkey.cs プロジェクト: ElasticSea/WinTile
 protected bool Equals(Hotkey other)
 {
     return(Key == other.Key && Modifiers == other.Modifiers);
 }
コード例 #2
0
ファイル: HotkeyPair.cs プロジェクト: ElasticSea/WinTile
 public HotkeyPair(HotkeyType type = HotkeyType.ExpandDown, Hotkey hotkey = null)
 {
     Type   = type;
     Hotkey = hotkey;
 }