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