Exemplo n.º 1
0
 /// <summary>
 /// IME開始した
 /// </summary>
 protected void OnIMEStart()
 {
     if (IMEStarted != null)
     {
         IMEStarted.Invoke(this, EventArgs.Empty);
     }
 }
Exemplo n.º 2
0
 void control_IMEStarted(object sender, EventArgs e)
 {
     if (IMEStarted != null)
     {
         IMEStarted.Invoke(this, EventArgs.Empty);
     }
 }
Exemplo n.º 3
0
 protected virtual void OnIMEStarted(EventArgs e)
 {
     IMEStarted?.Invoke(this, e);
 }