コード例 #1
0
 public OptionsSectionSelectedEventArgs(OptionsSection section, BaseOptionsPanel panel)
 {
     Section = section;
     Panel = panel;
 }
コード例 #2
0
ファイル: OptionsTreeControl.cs プロジェクト: odalet/CITray
 /// <summary>
 /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
 /// </summary>
 public void Dispose()
 {
     if (panel != null && !panel.IsDisposed)
     {
         panel.Dispose();
         panel = null;
     }
 }