Name

PropertyTabChangedEventArgs

Synopsis

The PropertyGrid control may display a number of different System.Windows.Forms.Design.PropertyTab panes. When the tab changes, the grid raises PropertyGrid.PropertyTabChanged, and this class encapsulates the data for that event.

You can retrieve the NewTab (to which the grid is about to change) and the OldTab (from which the grid is about to change).


public class PropertyTabChangedEventArgs : EventArgs {

// Public Constructors

   public PropertyTabChangedEventArgs(System.Windows.Forms.Design.PropertyTab oldTab,

        System.Windows.Forms.Design.PropertyTab newTab);

// Public Instance Properties

   public PropertyTab NewTab{get; }

   public PropertyTab OldTab{get; }

}

Hierarchy

System.Object System.EventArgs PropertyTabChangedEventArgs

Passed To

PropertyGrid.OnPropertyTabChanged(), PropertyTabChangedEventHandler.{BeginInvoke(), Invoke()}

Get .NET Windows Forms in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.