public OptionsSectionSelectedEventArgs(OptionsSection section, BaseOptionsPanel panel)
 {
     Section = section;
     Panel = panel;
 }
Exemple #2
0
 /// <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;
     }
 }