Andwho.Windows.Forms.ToolBar.ToolBar C# (CSharp) Метод

ToolBar() публичный Метод

初始化 Andwho.Windows.Forms.ToolBar 新的实例。
public ToolBar ( ) : System
Результат System
        public ToolBar()
        {
            this.SetStyle(
               ControlStyles.AllPaintingInWmPaint |
               ControlStyles.OptimizedDoubleBuffer |
               ControlStyles.ResizeRedraw |
               ControlStyles.Selectable |
               ControlStyles.SupportsTransparentBackColor |
               ControlStyles.UserPaint, true);
            this.SetStyle(ControlStyles.Opaque, false);
            this.UpdateStyles();
            this.Initialize();
        }