コード例 #1
0
ファイル: Win32Window.cs プロジェクト: 9087/Saffiano
 protected void DispatchCharEvent(CharEventType charEventType, char @char)
 {
     this.CharEvent?.Invoke(new CharEvent(charEventType, @char));
 }
コード例 #2
0
 public CharEvent(CharEventType eventType, char @char)
 {
     this.eventType = eventType;
     this.@char     = @char;
 }