コード例 #1
0
 /// <summary>
 /// Raises the <see cref="E:OptionLoadedEvent"/> event.
 /// </summary>
 /// <param name="e">The <see cref="Gean.Option.OptionLoadedEventArgs"/> instance containing the event data.</param>
 protected virtual void OnOptionLoaded(OptionLoadedEventArgs e)
 {
     if (OptionLoadedEvent != null)
     {
         OptionLoadedEvent(this, e);
     }
 }
コード例 #2
0
 private void OnOptionLoaded(OptionLoadedEventArgs e)
 {
     if (OptionLoadedEvent != null)
     {
         OptionLoadedEvent(this, e);
     }
 }
コード例 #3
0
ファイル: Option.cs プロジェクト: testdoron/pansoft
 private void OnOptionLoaded(OptionLoadedEventArgs e)
 {
     if (OptionLoadedEvent != null)
         OptionLoadedEvent(this, e);
 }