private void CreateMyDockBar()
        {
            var create_options = new DockBarCreateOptions
            {
                DockLocation = DockBarDockLocation.Bottom,
                Visible      = false,
                DockStyle    = DockBarDockStyle.Any,
                FloatPoint   = new System.Drawing.Point(100, 100)
            };

            timeline_bar = new TimelineDockBar();
            timeline_bar.Create(create_options);
        }
        private void CreateMyDockBar()
        {
            var createOptions = new DockBarCreateOptions
            {
                DockLocation = DockBarDockLocation.Left,
                Visible      = false,
                DockStyle    = DockBarDockStyle.LeftAndRight,
                FloatPoint   = new System.Drawing.Point(0, 0)
            };

            this.MyDockBar = new MainViewDockBar();
            this.MyDockBar.Create(createOptions);
        }
        private void CreateMyDockBar()
        {
            var create_options = new DockBarCreateOptions
            {
                DockLocation = DockBarDockLocation.Right,
                Visible      = false,
                DockStyle    = DockBarDockStyle.Any,
                FloatPoint   = new System.Drawing.Point(100, 100)
            };


            m_wpf_bar = new WpfDockBar();
            m_wpf_bar.Create(create_options);
        }