GrapeCity.Win.Containers 名前空間 : CommandIconEventArgs クラス |
Public Class CommandIconEventArgs Inherits System.EventArgs
public class CommandIconEventArgs : System.EventArgs
次のサンプルコードは、このクラスの使用方法を示します。この例では、イベントハンドラで、コマンドアイコンがクリックされたことをユーザーに伝えるダイアログをポップアップしています。
このサンプルコードを実行するには、以下のコードを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