バージョン

UltraExplorerBarStyle 列挙体

UltraExplorerBarのスタイルを指定するために使用される列挙子。
シンタックス
'宣言
 
Public Enum UltraExplorerBarStyle 
   Inherits System.Enum
public enum UltraExplorerBarStyle : System.Enum 
メンバ
メンバ解説
ExplorerBarUltraExplorerBar は Windows XP の Explorer バーの動作をエミュレートします。0 または 1 つ以上の UltraExplorerBarGroup を展開できます。
ListbarUltraExplorerBar は Outlook の Listbar の動作をエミュレートします。UltraExplorerBarGroup を 1 つだけ展開できます。
OutlookNavigationPaneUltraExplorerBar は Outlook 2003 のナビゲーション ペインの動作をエミュレートします。展開できるのは 1 つの UltraExplorerBarGroup のみで、特別なナビゲーション領域に他のグループを展開するための UI があります。
ToolboxUltraExplorerBar は Visual Studio の Toolbox の動作をエミュレートします。UltraExplorerBarGroup を 1 つだけ展開することができ、必要に応じて UltraExplorerBarGroup のヘッダーにスクロールボタンが表示されます。
VisualStudio2005ToolboxUltraExplorerBar は Visual Studio 2005 の Toolbox の動作をエミュレートします。0 または 1 つ以上の UltraExplorerBarGroup を展開できます。
使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button13_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button13.Click

		' Display the number of items in the currently selected group.  Note that
		' only control styles Listbar and Toolbox have the concept of SelectedGroup.
		If (Me.ultraExplorerBar1.Style = UltraExplorerBarStyle.Listbar Or Me.ultraExplorerBar1.Style = UltraExplorerBarStyle.Toolbox) Then
			If (Not Me.ultraExplorerBar1.SelectedGroup Is Nothing) Then
				Debug.WriteLine(String.Format("The Selected group contains {0} Items.", Me.ultraExplorerBar1.SelectedGroup.Items.Count))
			End If
		End If

	End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;


		private void button13_Click(object sender, System.EventArgs e)
		{
			// Display the number of items in the currently selected group.  Note that
			// only control styles Listbar and Toolbox have the concept of SelectedGroup.
			if (this.ultraExplorerBar1.Style	== UltraExplorerBarStyle.Listbar	||
				this.ultraExplorerBar1.Style	== UltraExplorerBarStyle.Toolbox)
			{
				if (this.ultraExplorerBar1.SelectedGroup != null)
					Debug.WriteLine(string.Format("The Selected group contains {0} Items.", this.ultraExplorerBar1.SelectedGroup.Items.Count));
			}

		}
参照