PowerTools PlusPak for Windows Forms 8.0J
CommandIconEventArgs クラス
メンバ  使用例 

GcTabControlGcTabBase.CommandIconClickイベントのデータを提供します。
構文
Public Class CommandIconEventArgs 
   Inherits System.EventArgs
public class CommandIconEventArgs : System.EventArgs 
解説
GcTabBase.CommandIconClickイベントが発生したとき、イベントが発生したアイコンのインデックスを取得するには、Indexプロパティにアクセスします。
使用例

次のサンプルコードは、このクラスの使用方法を示します。この例では、イベントハンドラで、コマンドアイコンがクリックされたことをユーザーに伝えるダイアログをポップアップしています。

このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。

public void CreateTabControlWithCommandIcons()
{
    // Create a GcTabControl.
    GcTabControl gcTabControl = new GcTabControl();

    // Set the size and location of gcTabControl.
    gcTabControl.Size = new Size(200, 200);
    gcTabControl.Location = new Point(10, 10);

    // Add some tab pages to gcTabControl.
    gcTabControl.TabPages.AddRange(new GcTabPage[]
    { 
        new GcTabPage("page1"),
        new GcTabPage("page2"),
    });

    // Add three empty command icons.
    gcTabControl.CommandIconList.CommandIcons.Add(new CommandIcon());
    gcTabControl.CommandIconList.CommandIcons.Add(new CommandIcon());
    gcTabControl.CommandIconList.CommandIcons.Add(new CommandIcon());

    gcTabControl.CommandIconClick += new EventHandler<CommandIconEventArgs>(GcTabControl_CommandIconClick);

    this.Controls.Add(gcTabControl);
}

private void GcTabControl_CommandIconClick(object sender, CommandIconEventArgs e)
{
    MessageBox.Show("You click on the icon " + e.Index + ".");
}
Public Sub CreateTabControlWithCommandIcons()
    ' Create a GcTabControl.
    Dim gcTabControl As New GcTabControl()

    ' Set the size and location of gcTabControl.
    gcTabControl.Size = New Size(200, 200)
    gcTabControl.Location = New Point(10, 10)

    ' Add some tab pages to gcTabControl.
    gcTabControl.TabPages.AddRange(New GcTabPage() {New GcTabPage("page1"), New GcTabPage("page2")})

    ' Add three empty command icons.
    gcTabControl.CommandIconList.CommandIcons.Add(New CommandIcon())
    gcTabControl.CommandIconList.CommandIcons.Add(New CommandIcon())
    gcTabControl.CommandIconList.CommandIcons.Add(New CommandIcon())

    AddHandler gcTabControl.CommandIconClick, AddressOf GcTabControl_CommandIconClick

    Me.Controls.Add(gcTabControl)
End Sub

Private Sub GcTabControl_CommandIconClick(ByVal sender As Object, ByVal e As CommandIconEventArgs)
    MessageBox.Show("You click on the icon " + e.Index + ".")
End Sub
継承階層

System.Object
   System.EventArgs
      GrapeCity.Win.Containers.CommandIconEventArgs

プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

CommandIconEventArgs メンバ
GrapeCity.Win.Containers 名前空間
GcTabControl クラス
CommandIconClick イベント
GcTabControl クラス
CommandIconClick イベント

Send Feedback