Fixed Example project namespaces

This commit is contained in:
Robin 2015-12-04 20:53:16 +00:00
parent 466a9ec9d6
commit 99b88d0991
17 changed files with 94 additions and 64 deletions

View File

@ -1,4 +1,6 @@
namespace Example using DarkUI.Controls;
namespace Example
{ {
partial class DialogAbout partial class DialogAbout
{ {
@ -30,11 +32,11 @@
{ {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogAbout)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogAbout));
this.pnlMain = new System.Windows.Forms.Panel(); this.pnlMain = new System.Windows.Forms.Panel();
this.lblVersion = new DarkUI.DarkLabel(); this.lblVersion = new DarkLabel();
this.darkLabel3 = new DarkUI.DarkLabel(); this.darkLabel3 = new DarkLabel();
this.darkLabel2 = new DarkUI.DarkLabel(); this.darkLabel2 = new DarkLabel();
this.darkLabel1 = new DarkUI.DarkLabel(); this.darkLabel1 = new DarkLabel();
this.lblHeader = new DarkUI.DarkLabel(); this.lblHeader = new DarkLabel();
this.pnlMain.SuspendLayout(); this.pnlMain.SuspendLayout();
this.SuspendLayout(); this.SuspendLayout();
// //
@ -137,10 +139,10 @@
#endregion #endregion
private System.Windows.Forms.Panel pnlMain; private System.Windows.Forms.Panel pnlMain;
private DarkUI.DarkLabel lblHeader; private DarkLabel lblHeader;
private DarkUI.DarkLabel darkLabel1; private DarkLabel darkLabel1;
private DarkUI.DarkLabel darkLabel3; private DarkLabel darkLabel3;
private DarkUI.DarkLabel darkLabel2; private DarkLabel darkLabel2;
private DarkUI.DarkLabel lblVersion; private DarkLabel lblVersion;
} }
} }

View File

@ -1,4 +1,4 @@
using DarkUI; using DarkUI.Forms;
using System.Windows.Forms; using System.Windows.Forms;
namespace Example namespace Example

View File

@ -1,4 +1,6 @@
namespace Example using DarkUI.Controls;
namespace Example
{ {
partial class DialogTest partial class DialogTest
{ {
@ -31,15 +33,15 @@
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogTest)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogTest));
this.pnlMain = new System.Windows.Forms.Panel(); this.pnlMain = new System.Windows.Forms.Panel();
this.tblMain = new System.Windows.Forms.TableLayoutPanel(); this.tblMain = new System.Windows.Forms.TableLayoutPanel();
this.pnlTreeView = new DarkUI.DarkSectionPanel(); this.pnlTreeView = new DarkSectionPanel();
this.treeTest = new DarkUI.DarkTreeView(); this.treeTest = new DarkTreeView();
this.pnlListView = new DarkUI.DarkSectionPanel(); this.pnlListView = new DarkSectionPanel();
this.lstTest = new DarkUI.DarkListView(); this.lstTest = new DarkListView();
this.pnlMessageBox = new DarkUI.DarkSectionPanel(); this.pnlMessageBox = new DarkSectionPanel();
this.panel1 = new System.Windows.Forms.Panel(); this.panel1 = new System.Windows.Forms.Panel();
this.btnMessageBox = new DarkUI.DarkButton(); this.btnMessageBox = new DarkButton();
this.panel2 = new System.Windows.Forms.Panel(); this.panel2 = new System.Windows.Forms.Panel();
this.btnDialog = new DarkUI.DarkButton(); this.btnDialog = new DarkButton();
this.pnlMain.SuspendLayout(); this.pnlMain.SuspendLayout();
this.tblMain.SuspendLayout(); this.tblMain.SuspendLayout();
this.pnlTreeView.SuspendLayout(); this.pnlTreeView.SuspendLayout();
@ -198,14 +200,14 @@
private System.Windows.Forms.Panel pnlMain; private System.Windows.Forms.Panel pnlMain;
private System.Windows.Forms.TableLayoutPanel tblMain; private System.Windows.Forms.TableLayoutPanel tblMain;
private DarkUI.DarkSectionPanel pnlTreeView; private DarkSectionPanel pnlTreeView;
private DarkUI.DarkTreeView treeTest; private DarkTreeView treeTest;
private DarkUI.DarkSectionPanel pnlListView; private DarkSectionPanel pnlListView;
private DarkUI.DarkListView lstTest; private DarkListView lstTest;
private DarkUI.DarkSectionPanel pnlMessageBox; private DarkSectionPanel pnlMessageBox;
private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Panel panel1;
private DarkUI.DarkButton btnMessageBox; private DarkButton btnMessageBox;
private System.Windows.Forms.Panel panel2; private System.Windows.Forms.Panel panel2;
private DarkUI.DarkButton btnDialog; private DarkButton btnDialog;
} }
} }

View File

@ -1,4 +1,5 @@
using DarkUI; using DarkUI.Controls;
using DarkUI.Forms;
namespace Example namespace Example
{ {

View File

@ -1,4 +1,7 @@
namespace Example using DarkUI.Config;
using DarkUI.Controls;
namespace Example
{ {
partial class DockConsole partial class DockConsole
{ {
@ -28,7 +31,7 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
this.lstConsole = new DarkUI.DarkListView(); this.lstConsole = new DarkListView();
this.SuspendLayout(); this.SuspendLayout();
// //
// lstConsole // lstConsole
@ -46,7 +49,7 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.lstConsole); this.Controls.Add(this.lstConsole);
this.DockArea = DarkUI.DarkDockArea.Bottom; this.DockArea = DarkDockArea.Bottom;
this.DockText = "Console"; this.DockText = "Console";
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Icon = global::Example.Icons.Console; this.Icon = global::Example.Icons.Console;
@ -58,6 +61,6 @@
#endregion #endregion
private DarkUI.DarkListView lstConsole; private DarkListView lstConsole;
} }
} }

View File

@ -1,4 +1,5 @@
using DarkUI; using DarkUI.Controls;
using DarkUI.Docking;
namespace Example namespace Example
{ {

View File

@ -1,4 +1,6 @@
using DarkUI; using DarkUI.Config;
using DarkUI.Docking;
using DarkUI.Forms;
using System.Windows.Forms; using System.Windows.Forms;
namespace Example namespace Example

View File

@ -1,4 +1,7 @@
namespace Example using DarkUI.Config;
using DarkUI.Controls;
namespace Example
{ {
partial class DockHistory partial class DockHistory
{ {
@ -28,7 +31,7 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
this.lstHistory = new DarkUI.DarkListView(); this.lstHistory = new DarkListView();
this.SuspendLayout(); this.SuspendLayout();
// //
// lstHistory // lstHistory
@ -45,7 +48,7 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.lstHistory); this.Controls.Add(this.lstHistory);
this.DockArea = DarkUI.DarkDockArea.Bottom; this.DockArea = DarkDockArea.Bottom;
this.DockText = "History"; this.DockText = "History";
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Icon = global::Example.Icons.RefactoringLog_12810; this.Icon = global::Example.Icons.RefactoringLog_12810;
@ -57,6 +60,6 @@
#endregion #endregion
private DarkUI.DarkListView lstHistory; private DarkListView lstHistory;
} }
} }

View File

@ -1,4 +1,5 @@
using DarkUI; using DarkUI.Controls;
using DarkUI.Docking;
namespace Example namespace Example
{ {

View File

@ -1,4 +1,7 @@
namespace Example using DarkUI.Config;
using DarkUI.Controls;
namespace Example
{ {
partial class DockLayers partial class DockLayers
{ {
@ -28,7 +31,7 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
this.lstLayers = new DarkUI.DarkListView(); this.lstLayers = new DarkListView();
this.SuspendLayout(); this.SuspendLayout();
// //
// lstLayers // lstLayers
@ -45,7 +48,7 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.lstLayers); this.Controls.Add(this.lstLayers);
this.DockArea = DarkUI.DarkDockArea.Right; this.DockArea = DarkDockArea.Right;
this.DockText = "Layers"; this.DockText = "Layers";
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Icon = global::Example.Icons.Collection_16xLG; this.Icon = global::Example.Icons.Collection_16xLG;
@ -57,6 +60,6 @@
#endregion #endregion
private DarkUI.DarkListView lstLayers; private DarkListView lstLayers;
} }
} }

View File

@ -1,4 +1,5 @@
using DarkUI; using DarkUI.Controls;
using DarkUI.Docking;
namespace Example namespace Example
{ {

View File

@ -1,4 +1,7 @@
namespace Example using DarkUI.Config;
using DarkUI.Controls;
namespace Example
{ {
partial class DockProject partial class DockProject
{ {
@ -28,7 +31,7 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
this.treeProject = new DarkUI.DarkTreeView(); this.treeProject = new DarkTreeView();
this.SuspendLayout(); this.SuspendLayout();
// //
// treeProject // treeProject
@ -48,7 +51,7 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.treeProject); this.Controls.Add(this.treeProject);
this.DockArea = DarkUI.DarkDockArea.Left; this.DockArea = DarkDockArea.Left;
this.DockText = "Project Explorer"; this.DockText = "Project Explorer";
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Icon = global::Example.Icons.application_16x; this.Icon = global::Example.Icons.application_16x;
@ -60,6 +63,6 @@
#endregion #endregion
private DarkUI.DarkTreeView treeProject; private DarkTreeView treeProject;
} }
} }

View File

@ -1,4 +1,5 @@
using DarkUI; using DarkUI.Controls;
using DarkUI.Docking;
namespace Example namespace Example
{ {

View File

@ -1,4 +1,6 @@
namespace Example using DarkUI.Config;
namespace Example
{ {
partial class DockProperties partial class DockProperties
{ {
@ -34,7 +36,7 @@
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.DockArea = DarkUI.DarkDockArea.Right; this.DockArea = DarkDockArea.Right;
this.DockText = "Properties"; this.DockText = "Properties";
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Icon = global::Example.Icons.properties_16xLG; this.Icon = global::Example.Icons.properties_16xLG;

View File

@ -1,4 +1,4 @@
using DarkUI; using DarkUI.Docking;
namespace Example namespace Example
{ {

View File

@ -1,4 +1,7 @@
namespace Example using DarkUI.Controls;
using DarkUI.Docking;
namespace Example
{ {
partial class MainForm partial class MainForm
{ {
@ -29,7 +32,7 @@
private void InitializeComponent() private void InitializeComponent()
{ {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.mnuMain = new DarkUI.DarkMenuStrip(); this.mnuMain = new DarkMenuStrip();
this.mnuFile = new System.Windows.Forms.ToolStripMenuItem(); this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
this.mnuNewFile = new System.Windows.Forms.ToolStripMenuItem(); this.mnuNewFile = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
@ -45,14 +48,14 @@
this.mnuHistory = new System.Windows.Forms.ToolStripMenuItem(); this.mnuHistory = new System.Windows.Forms.ToolStripMenuItem();
this.mnuHelp = new System.Windows.Forms.ToolStripMenuItem(); this.mnuHelp = new System.Windows.Forms.ToolStripMenuItem();
this.mnuAbout = new System.Windows.Forms.ToolStripMenuItem(); this.mnuAbout = new System.Windows.Forms.ToolStripMenuItem();
this.toolMain = new DarkUI.DarkToolStrip(); this.toolMain = new DarkToolStrip();
this.btnNewFile = new System.Windows.Forms.ToolStripButton(); this.btnNewFile = new System.Windows.Forms.ToolStripButton();
this.stripMain = new DarkUI.DarkStatusStrip(); this.stripMain = new DarkStatusStrip();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel6 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel6 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel();
this.DockPanel = new DarkUI.DarkDockPanel(); this.DockPanel = new DarkDockPanel();
this.darkSeparator1 = new DarkUI.DarkSeparator(); this.darkSeparator1 = new DarkSeparator();
this.mnuMain.SuspendLayout(); this.mnuMain.SuspendLayout();
this.toolMain.SuspendLayout(); this.toolMain.SuspendLayout();
this.stripMain.SuspendLayout(); this.stripMain.SuspendLayout();
@ -321,9 +324,9 @@
#endregion #endregion
private DarkUI.DarkMenuStrip mnuMain; private DarkMenuStrip mnuMain;
private DarkUI.DarkToolStrip toolMain; private DarkToolStrip toolMain;
private DarkUI.DarkStatusStrip stripMain; private DarkStatusStrip stripMain;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel6; private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel6;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel5; private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel5;
@ -338,13 +341,13 @@
private System.Windows.Forms.ToolStripButton btnNewFile; private System.Windows.Forms.ToolStripButton btnNewFile;
private System.Windows.Forms.ToolStripMenuItem mnuNewFile; private System.Windows.Forms.ToolStripMenuItem mnuNewFile;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private DarkUI.DarkDockPanel DockPanel; private DarkDockPanel DockPanel;
private System.Windows.Forms.ToolStripMenuItem mnuProject; private System.Windows.Forms.ToolStripMenuItem mnuProject;
private System.Windows.Forms.ToolStripMenuItem mnuProperties; private System.Windows.Forms.ToolStripMenuItem mnuProperties;
private System.Windows.Forms.ToolStripMenuItem mnuConsole; private System.Windows.Forms.ToolStripMenuItem mnuConsole;
private System.Windows.Forms.ToolStripMenuItem mnuLayers; private System.Windows.Forms.ToolStripMenuItem mnuLayers;
private System.Windows.Forms.ToolStripMenuItem mnuHistory; private System.Windows.Forms.ToolStripMenuItem mnuHistory;
private DarkUI.DarkSeparator darkSeparator1; private DarkSeparator darkSeparator1;
} }
} }

View File

@ -1,4 +1,6 @@
using DarkUI; using DarkUI.Docking;
using DarkUI.Forms;
using DarkUI.Win32;
using System; using System;
using System.Windows.Forms; using System.Windows.Forms;