-
Notifications
You must be signed in to change notification settings - Fork 3
TabItemClosingEventArgs
JaykeBird edited this page Feb 21, 2023
·
6 revisions
Back to home | Back to Reference | View raw text
Event arguments for the TabClosing event in TabControl.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SolidShineUi
SolidShineUi.TabItemClosingEventArgs[[TabItemClosingEventArgs]]
end
Type | Name | Methods |
---|---|---|
bool |
Cancel Get or set if this operation should be cancelled. If true , this tab will not be closed and removed from the TabControl. |
get, set |
TabItem |
TabItem The TabItem being closed (and removed from the TabControl). |
get |
Event arguments for the TabClosing event in TabControl.
public TabItemClosingEventArgs(TabItem t)
Type | Name | Description |
---|---|---|
TabItem |
t | The tab item being closed. |
Create a TabItemClosingEventArgs.
public TabItem TabItem { get; }
The TabItem being closed (and removed from the TabControl).
public bool Cancel { get; set; }
Get or set if this operation should be cancelled. If true
, this tab will not be closed and removed from the TabControl.
Generated with ModularDoc