コード例 #1
0
ファイル: TextEditableControl.cs プロジェクト: KHCmaster/PPD
 /// <summary>
 /// IME開始した
 /// </summary>
 protected void OnIMEStart()
 {
     if (IMEStarted != null)
     {
         IMEStarted.Invoke(this, EventArgs.Empty);
     }
 }
コード例 #2
0
ファイル: MyGame.cs プロジェクト: KHCmaster/PPD
 void control_IMEStarted(object sender, EventArgs e)
 {
     if (IMEStarted != null)
     {
         IMEStarted.Invoke(this, EventArgs.Empty);
     }
 }
コード例 #3
0
ファイル: MyGame.cs プロジェクト: KHCmaster/PPD
 protected virtual void OnIMEStarted(EventArgs e)
 {
     IMEStarted?.Invoke(this, e);
 }