ToolBar Button Style : Toolbar « GUI Windows Forms « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » GUI Windows Forms » Toolbar 
23.38.11.ToolBar Button Style
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

  public class TBBStylesForm : System.Windows.Forms.Form
  {
    private System.Windows.Forms.ToolBar tbMain;
    private System.Windows.Forms.ImageList imgListDefault;
    private System.Windows.Forms.ContextMenu ddmDemo;
    private System.Windows.Forms.MenuItem menuItem1;
    private System.Windows.Forms.MenuItem menuItem2;
    private System.Windows.Forms.MenuItem menuItem3;
    private System.ComponentModel.IContainer components;

    public TBBStylesForm()
    {
      InitializeComponent();

      string[] astrTBB = {"Cut""Copy""Paste""""Messages""""Help"};
      ToolBarButtonStyle[] atbbStyles = {ToolBarButtonStyle.PushButton,
        ToolBarButtonStyle.PushButton, ToolBarButtonStyle.PushButton,
        ToolBarButtonStyle.Separator, ToolBarButtonStyle.ToggleButton,
        ToolBarButtonStyle.Separator, ToolBarButtonStyle.DropDownButton };
      int[] anImageIndex = 012040};

      for (int i=0; i < astrTBB.Length; i++)
      {
        ToolBarButton tbb = new ToolBarButton();
        tbb.ImageIndex = anImageIndex[i];
        tbb.Style = atbbStyles[i];
        tbb.ToolTipText = astrTBB[i];
        if (tbb.Style == ToolBarButtonStyle.DropDownButton)
        {
          tbb.DropDownMenu = ddmDemo;
        }
        tbMain.Buttons.Add(tbb);
      }
    
    }
    private void InitializeComponent()
    {
      this.components = new System.ComponentModel.Container();
      System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(TBBStylesForm));
      this.tbMain = new System.Windows.Forms.ToolBar();
      this.imgListDefault = new System.Windows.Forms.ImageList(this.components);
      this.ddmDemo = new System.Windows.Forms.ContextMenu();
      this.menuItem1 = new System.Windows.Forms.MenuItem();
      this.menuItem2 = new System.Windows.Forms.MenuItem();
      this.menuItem3 = new System.Windows.Forms.MenuItem();
      this.SuspendLayout();
      // 
      // tbMain
      // 
      this.tbMain.DropDownArrows = true;
      this.tbMain.ImageList = this.imgListDefault;
      this.tbMain.Name = "tbMain";
      this.tbMain.ShowToolTips = true;
      this.tbMain.Size = new System.Drawing.Size(29239);
      this.tbMain.TabIndex = 0;
      this.tbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.OnButtonClick);
      // 
      // imgListDefault
      // 
      this.imgListDefault.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
      this.imgListDefault.ImageSize = new System.Drawing.Size(1616);
      this.imgListDefault.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgListDefault.ImageStream")));
      this.imgListDefault.TransparentColor = System.Drawing.Color.Transparent;
      // 
      // ddmDemo
      // 
      this.ddmDemo.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                          this.menuItem1,
                                          this.menuItem2,
                                          this.menuItem3});
      this.ddmDemo.Popup += new System.EventHandler(this.ddmDemo_Popup);
      // 
      // menuItem1
      // 
      this.menuItem1.Index = 0;
      this.menuItem1.Text = "SDK Help";
      // 
      // menuItem2
      // 
      this.menuItem2.Index = 1;
      this.menuItem2.Text = "Visual Studio .NET Help";
      // 
      // menuItem3
      // 
      this.menuItem3.Index = 2;
      this.menuItem3.Text = "About";
      // 
      // TBBStylesForm
      // 
      this.AutoScaleBaseSize = new System.Drawing.Size(513);
      this.ClientSize = new System.Drawing.Size(292273);
      this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                      this.tbMain});
      this.Name = "TBBStylesForm";
      this.Text = "ToolBarButtonStyles Sample";
      this.Load += new System.EventHandler(this.TBBStylesForm_Load);
      this.ResumeLayout(false);

    }
    static void Main() 
    {
      Application.Run(new TBBStylesForm());
    }

    private void OnButtonClick(object sender, System.Windows.Forms.ToolBarButtonClickEventArgs e)
    {
      bool bShowMessages = tbMain.Buttons[4].Pushed;
      if (true == bShowMessages)
      {
        MessageBox.Show("Button " + e.Button.ToolTipText + " was clicked");
      }
    }

    private void TBBStylesForm_Load(object sender, System.EventArgs e)
    {
    
    }

    private void ddmDemo_Popup(object sender, System.EventArgs e)
    {
    
    }
  }
23.38.Toolbar
23.38.1.Toolbar with ComboBoxToolbar with ComboBox
23.38.2.ToolBar Linked With MenuToolBar Linked With Menu
23.38.3.ToolBar Button ActionToolBar Button Action
23.38.4.Add Button action to ToolBar ButtonAdd Button action to ToolBar Button
23.38.5.Add ToolTip to ToolBar ButtonAdd ToolTip to ToolBar Button
23.38.6.Create an ImageList and use it for ToolBarCreate an ImageList and use it for ToolBar
23.38.7.Add Image to ToolBar ButtonAdd Image to ToolBar Button
23.38.8.ToolBar Button border style: BorderStyle.Fixed3DToolBar Button border style: BorderStyle.Fixed3D
23.38.9.Cut, Copy Paste/Text Box with Toolbar
23.38.10.Designed Toolbar
23.38.11.ToolBar Button Style
23.38.12.Toolbar Styles
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.