예제 #1
0
 /// <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);
 }