public MovableDockContent(ContentIndex index) : base()
 {
     this.Index       = index;
     this.Id          = Guid.NewGuid();
     this.FormClosed += CustomDockContent_FormClosed;
     this.Index.Add(this);
 }
 public DockWindow(ContentIndex index)
 {
     InitializeComponent();
     this.Index           = index;
     this.Id              = Guid.NewGuid();
     this.DockPanel.Theme = new VS2015LightTheme();
     this.DockPanel.Theme.Extender.DockPaneStripFactory = new MovableContentDockPaneStripFactory(this.DockPanel.Theme.Extender.DockPaneStripFactory);
 }
Example #3
0
        public ExampleDockContent(ContentIndex index)
            : base(index)
        {
            InitializeComponent();
            var old = Interlocked.Increment(ref Count);

            this.label1.Text = $"{old}";
        }
Example #4
0
 public InProcessClient()
 {
     this.GuiThread    = null;
     this.ContentIndex = new ContentIndex();
 }
Example #5
0
 public PlotPane(ContentIndex index) : base(index)
 {
     InitializeComponent();
 }
Example #6
0
 public MainForm()
 {
     InitializeComponent();
     this.Index = new ContentIndex();
 }