ToolBar.ToolBarButtonCollection クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ToolBar クラスで使用する ToolBarButton コントロールのコレクションをカプセル化します。
public: ref class ToolBar::ToolBarButtonCollection : System::Collections::IList
public class ToolBar.ToolBarButtonCollection : System.Collections.IList
type ToolBar.ToolBarButtonCollection = class
interface IList
interface ICollection
interface IEnumerable
Public Class ToolBar.ToolBarButtonCollection
Implements IList
- 継承
-
ToolBar.ToolBarButtonCollection
- 実装
例
次のコード例では、 コントロールと 3 つのToolBarButtonコントロールをToolBar作成して初期化します。 ツール バー ボタンがツール バーに割り当てられ、ツール バーがフォームに追加されます。 このコードでは、 が既に Form 作成されている必要があります。
public:
void InitializeMyToolBar()
{
// Create and initialize the ToolBarButton controls and ToolBar.
ToolBar^ toolBar1 = gcnew ToolBar;
ToolBarButton^ toolBarButton1 = gcnew ToolBarButton;
ToolBarButton^ toolBarButton2 = gcnew ToolBarButton;
ToolBarButton^ toolBarButton3 = gcnew ToolBarButton;
// Set the Text properties of the ToolBarButton controls.
toolBarButton1->Text = "Open";
toolBarButton2->Text = "Save";
toolBarButton3->Text = "Print";
// Add the ToolBarButton controls to the ToolBar.
toolBar1->Buttons->Add( toolBarButton1 );
toolBar1->Buttons->Add( toolBarButton2 );
toolBar1->Buttons->Add( toolBarButton3 );
// Add the ToolBar to the Form.
Controls->Add( toolBar1 );
}
public void InitializeMyToolBar()
{
// Create and initialize the ToolBarButton controls and ToolBar.
ToolBar toolBar1 = new ToolBar();
ToolBarButton toolBarButton1 = new ToolBarButton();
ToolBarButton toolBarButton2 = new ToolBarButton();
ToolBarButton toolBarButton3 = new ToolBarButton();
// Set the Text properties of the ToolBarButton controls.
toolBarButton1.Text = "Open";
toolBarButton2.Text = "Save";
toolBarButton3.Text = "Print";
// Add the ToolBarButton controls to the ToolBar.
toolBar1.Buttons.Add(toolBarButton1);
toolBar1.Buttons.Add(toolBarButton2);
toolBar1.Buttons.Add(toolBarButton3);
// Add the ToolBar to the Form.
Controls.Add(toolBar1);
}
Public Sub InitializeMyToolBar()
' Create and initialize the ToolBarButton controls and ToolBar.
Dim toolBar1 As New ToolBar()
Dim toolBarButton1 As New ToolBarButton()
Dim toolBarButton2 As New ToolBarButton()
Dim toolBarButton3 As New ToolBarButton()
' Set the Text properties of the ToolBarButton controls.
toolBarButton1.Text = "Open"
toolBarButton2.Text = "Save"
toolBarButton3.Text = "Print"
' Add the ToolBarButton controls to the ToolBar.
toolBar1.Buttons.Add(toolBarButton1)
toolBar1.Buttons.Add(toolBarButton2)
toolBar1.Buttons.Add(toolBarButton3)
' Add the ToolBar to the Form.
Controls.Add(toolBar1)
End Sub
注釈
ToolBar.ToolBarButtonCollectionは、ツール バーに割り当てられたすべてのToolBarButtonコントロールをToolBar保持するために クラスによって使用される 0 から始まるインデックス付きコレクションです。 メソッドを Add 使用して個々のボタンを追加し、 Remove それらを削除するメソッドを使用します。 メソッドを Clear 呼び出して、コレクションからすべてのボタンを削除します。
コンストラクター
ToolBar.ToolBarButtonCollection(ToolBar) |
ToolBar.ToolBarButtonCollection クラスの新しいインスタンスを初期化し、指定されたツール バーに割り当てます。 |
プロパティ
Count |
ツール バー ボタン コレクション内のボタンの数を取得します。 |
IsReadOnly |
コレクションが読み取り専用かどうかを示す値を取得します。 |
Item[Int32] |
ツール バー ボタン コレクション内の指定したインデックス位置にあるツール バー ボタンを取得または設定します。 |
Item[String] |
指定したキーの ToolBarButton をコレクションから取得します。 |
メソッド
Add(String) |
新しいツール バー ボタンを指定された Text プロパティの値を持つツール バー ボタン コレクションの末尾に追加します。 |
Add(ToolBarButton) |
指定されたツール バー ボタンをツール バー ボタン コレクションの末尾に追加します。 |
AddRange(ToolBarButton[]) |
ツール バー ボタンのコレクションをこのツール バー ボタン コレクションに追加します。 |
Clear() |
ツール バー ボタン コレクションからすべてのボタンを削除します。 |
Contains(ToolBarButton) |
指定したツール バー ボタンがコレクションのメンバーかどうかを確認します。 |
ContainsKey(String) |
指定したキーの ToolBarButton がコレクション内にあるかどうかを判断します。 |
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
GetEnumerator() |
ツール バー ボタン コレクションを反復処理するために使用できる列挙子を返します。 |
GetHashCode() |
既定のハッシュ関数として機能します。 (継承元 Object) |
GetType() |
現在のインスタンスの Type を取得します。 (継承元 Object) |
IndexOf(ToolBarButton) |
コレクション内の指定したツール バー ボタンのインデックスを取得します。 |
IndexOfKey(String) |
指定したキーを持つ ToolBarButton が最初に出現するインデックスを取得します。 |
Insert(Int32, ToolBarButton) |
ツール バー ボタン コレクション内の指定した位置に既存のツール バー ボタンを挿入します。 |
MemberwiseClone() |
現在の Object の簡易コピーを作成します。 (継承元 Object) |
Remove(ToolBarButton) |
ツール バー ボタン コレクションから指定したボタンを削除します。 |
RemoveAt(Int32) |
ツール バー ボタン コレクションから指定したボタンを削除します。 |
RemoveByKey(String) |
指定したキーを持つ ToolBarButton をコレクションから削除します。 |
ToString() |
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
明示的なインターフェイスの実装
ICollection.CopyTo(Array, Int32) |
ICollection の要素を Array にコピーします。Array の特定のインデックスからコピーが開始されます。 |
ICollection.IsSynchronized |
コレクションへのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。 |
ICollection.SyncRoot |
ボタンのコレクションへのアクセスを同期するために使用するオブジェクトを取得します。 |
IList.Add(Object) |
指定されたツール バー ボタンをツール バー ボタン コレクションの末尾に追加します。 |
IList.Contains(Object) |
コレクションに特定の値が格納されているかどうかを判断します。 |
IList.IndexOf(Object) |
コレクション内での指定した項目のインデックスを調べます。 |
IList.Insert(Int32, Object) |
ツール バー ボタン コレクション内の指定した位置に既存のツール バー ボタンを挿入します。 |
IList.IsFixedSize |
コレクションが固定サイズかどうかを示す値を取得します。 |
IList.Item[Int32] |
指定したインデックスにある項目を取得または設定します。 |
IList.Remove(Object) |
最初に出現する項目をコレクションから削除します。 |
拡張メソッド
Cast<TResult>(IEnumerable) |
IEnumerable の要素を、指定した型にキャストします。 |
OfType<TResult>(IEnumerable) |
指定された型に基づいて IEnumerable の要素をフィルター処理します。 |
AsParallel(IEnumerable) |
クエリの並列化を有効にします。 |
AsQueryable(IEnumerable) |
IEnumerable を IQueryable に変換します。 |
適用対象
こちらもご覧ください
.NET