内容介绍:http://www.componentcn.com/?thread-6423-1.html

BubbleBar应用:

BubbleBar, DevComponents.    Namespace: DevComponents.DotNetBar
    Assembly: DevComponents.DotNetBar2.dll
    Using: DevComponents.DotNetBar;
    Declaring: DevComponents.DotNetBar.BubbleBar();

    Creating a new DotNetBar BubbleBar.

    DevComponents.DotNetBar.BubbleBar BBar = new DevComponents.DotNetBar.BubbleBar();
    BBar.Dock = DockStyle.Bottom;
    DevComponents.DotNetBar.BubbleBarTab Btab = new DevComponents.DotNetBar.BubbleBarTab();
    Btab.Text = "Tab One";
    Btab.PredefinedColor = DevComponents.DotNetBar.eTabItemColor.Blue;
    BBar.Tabs.Add(Btab);
DevComponents.DotNetBar.BubbleButton Bitem = new DevComponents.DotNetBar.BubbleButton();
    Bitem.Image = global ::WindowsApplication2.Properties.Resources._001_folder1;//_001_folder1为资源文件中的图片名称
    Btab.Buttons.Add(Bitem);
     BBar.Size = new Size(200, 100);
    this.Controls.Add(BBar);

 

相关文章:

  • 2021-12-17
  • 2022-12-23
  • 2022-12-23
  • 2021-06-05
  • 2022-12-23
  • 2022-12-23
  • 2021-04-13
  • 2021-12-14
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-29
  • 2021-09-12
  • 2021-07-06
  • 2021-12-09
  • 2022-12-23
相关资源
相似解决方案