.net别样外观控件包DotNetBar

内容介绍: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);

原文地址:https://www.cnblogs.com/enjoyprogram/p/3214681.html