Inheritance: System.Collections.CollectionBase
コード例 #1
0
 public void AddRange(ExplorerBarButtonCollection items)
 {
     foreach (ExplorerBarButton item in items)
     {
         Add(item);
     }
 }
コード例 #2
0
 public void AddRange(ExplorerBarButtonCollection items)
 {
     foreach (ExplorerBarButton item in items)
     {
         Add(item);
     }
 }
コード例 #3
0
        public ExplorerBar()
        {
            SetStyle(ControlStyles.AllPaintingInWmPaint, true);
            SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
            SetStyle(ControlStyles.ResizeRedraw, true);

            _dropDownButton       = new ExplorerBarButton();
            _dropDownButton.Owner = this;

            RenderMode = ExplorerBarRenderMode.Themed;

            _buttons = new ExplorerBarButtonCollection(this);
        }
コード例 #4
0
ファイル: ExplorerBar.cs プロジェクト: pvginkel/SystemEx
        public ExplorerBar()
        {
            SetStyle(ControlStyles.AllPaintingInWmPaint, true);
            SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
            SetStyle(ControlStyles.ResizeRedraw, true);

            _dropDownButton = new ExplorerBarButton();
            _dropDownButton.Owner = this;

            RenderMode = ExplorerBarRenderMode.Themed;

            _buttons = new ExplorerBarButtonCollection(this);
        }