중간 커밋

- dockpanelsuite 추가
- RowPanel, TablePanel 추가
This commit is contained in:
2017-06-14 18:21:43 +09:00
parent 475523e02e
commit 1b54dab234
14 changed files with 533 additions and 110 deletions

15
MainForm.Designer.cs generated
View File

@@ -33,6 +33,7 @@
this.toolStripButtonOpen = new System.Windows.Forms.ToolStripButton();
this.statusStrip = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
this.toolStripMain.SuspendLayout();
this.statusStrip.SuspendLayout();
this.SuspendLayout();
@@ -75,14 +76,23 @@
this.toolStripStatusLabel.Size = new System.Drawing.Size(122, 17);
this.toolStripStatusLabel.Text = "Please open database";
//
// Form1
// dockPanel
//
this.dockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.dockPanel.Location = new System.Drawing.Point(0, 25);
this.dockPanel.Name = "dockPanel";
this.dockPanel.Size = new System.Drawing.Size(947, 598);
this.dockPanel.TabIndex = 2;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(947, 645);
this.Controls.Add(this.dockPanel);
this.Controls.Add(this.statusStrip);
this.Controls.Add(this.toolStripMain);
this.Name = "Form1";
this.Name = "MainForm";
this.Text = "Form1";
this.toolStripMain.ResumeLayout(false);
this.toolStripMain.PerformLayout();
@@ -99,6 +109,7 @@
private System.Windows.Forms.ToolStripButton toolStripButtonOpen;
private System.Windows.Forms.StatusStrip statusStrip;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel;
private WeifenLuo.WinFormsUI.Docking.DockPanel dockPanel;
}
}