'宣言 Public Property CloseButtonVisibility As Infragistics.Win.UltraWinTabs.TabCloseButtonVisibility
public Infragistics.Win.UltraWinTabs.TabCloseButtonVisibility CloseButtonVisibility {get; set;}
例外 | 解説 |
---|---|
System.ComponentModel.InvalidEnumArgumentException | 指定された値は、Infragistics.Win.UltraWinTabs.TabCloseButtonVisibility 列挙体で定義されません。 |
これは所有タブ グループの CloseButtonLocation が Tab に設定される場合に限り適用されます。
Imports Infragistics.Win Imports Infragistics.Win.UltraWinTabs ' Place close buttons in all the tabs of the tab control. Me.UltraTabbedMdiManager1.TabGroupSettings.CloseButtonLocation = TabCloseButtonLocation.Tab ' Disable the close button in the first tab. ' This will also prevent middle clicking on the tab from closing it. Me.UltraTabbedMdiManager1.TabGroups(0).Tabs(0).Settings.AllowClose = Infragistics.Win.DefaultableBoolean.False ' The second tab's close button should come before the image and text of the tab. Me.UltraTabbedMdiManager1.TabGroups(0).Tabs(1).Settings.CloseButtonAlignment = TabCloseButtonAlignment.BeforeContent ' The third tab should only display a close button when it is the selected tab. Me.UltraTabbedMdiManager1.TabGroups(0).Tabs(2).Settings.CloseButtonVisibility = TabCloseButtonVisibility.WhenSelected
using System.Windows.Forms; using Infragistics.Win; using Infragistics.Win.UltraWinTabs; // Place close buttons in all the tabs of the tab control. this.ultraTabbedMdiManager1.TabGroupSettings.CloseButtonLocation = TabCloseButtonLocation.Tab; // Disable the close button in the first tab. // This will also prevent middle clicking on the tab from closing it. this.ultraTabbedMdiManager1.TabGroups[ 0 ].Tabs[ 0 ].Settings.AllowClose = Infragistics.Win.DefaultableBoolean.False; // The second tab's close button should come before the image and text of the tab. this.ultraTabbedMdiManager1.TabGroups[ 0 ].Tabs[ 1 ].Settings.CloseButtonAlignment = TabCloseButtonAlignment.BeforeContent; // The third tab should only display a close button when it is the selected tab. this.ultraTabbedMdiManager1.TabGroups[ 0 ].Tabs[ 2 ].Settings.CloseButtonVisibility = TabCloseButtonVisibility.WhenSelected;