A class to contain the information regarding the YaTabControl.NewTab event.
Inheritance: System.EventArgs
 /// <summary>
 /// Fires the <see cref="NewTabButtonClicked"/> event.
 /// </summary>
 /// <param name="ea">
 /// Some <see cref="EventArgs"/>.
 /// </param>
 protected virtual void OnNewTabButtonClicked(NewTabEventArgs ea)
 {
     if (NewTabButtonClicked != null)
     {
         NewTabButtonClicked(this, ea);
     }
 }
 private void _tabs_NewTabButtonClicked(object sender, NewTabEventArgs e)
 {
     //_tabs.SelectedTab = e.NewTab;
 }