fix theme

This commit is contained in:
Sean Kaim
2016-08-29 17:56:18 -04:00
parent 005425efb1
commit 5c203c8e30
2 changed files with 4 additions and 3 deletions

View File

@@ -146,7 +146,7 @@ namespace mRemoteNG.UI.Forms
this.mMenView,
this.mMenTools,
this.mMenInfo});
this.msMain.Location = new System.Drawing.Point(3, 0);
this.msMain.Location = new System.Drawing.Point(114, 25);
this.msMain.Name = "msMain";
this.msMain.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2);
this.msMain.Size = new System.Drawing.Size(181, 24);
@@ -716,9 +716,9 @@ namespace mRemoteNG.UI.Forms
//
// tsContainer.TopToolStripPanel
//
this.tsContainer.TopToolStripPanel.Controls.Add(this.msMain);
this.tsContainer.TopToolStripPanel.Controls.Add(this.tsQuickConnect);
this.tsContainer.TopToolStripPanel.Controls.Add(this.tsExternalTools);
this.tsContainer.TopToolStripPanel.Controls.Add(this.msMain);
this.tsContainer.TopToolStripPanel.Controls.Add(this.ToolStrip1);
this.tsContainer.TopToolStripPanel.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
//
@@ -730,7 +730,7 @@ namespace mRemoteNG.UI.Forms
this.cmbQuickConnect,
this.btnQuickConnect,
this.btnConnections});
this.tsQuickConnect.Location = new System.Drawing.Point(184, 0);
this.tsQuickConnect.Location = new System.Drawing.Point(3, 0);
this.tsQuickConnect.MaximumSize = new System.Drawing.Size(0, 25);
this.tsQuickConnect.Name = "tsQuickConnect";
this.tsQuickConnect.Size = new System.Drawing.Size(387, 25);

View File

@@ -47,6 +47,7 @@ namespace mRemoteNG.UI.Forms
_showFullPathInTitle = Settings.Default.ShowCompleteConsPathInTitle;
InitializeComponent();
_fullscreen = new MiscTools.Fullscreen(this);
pnlDock.Theme = new VS2012LightTheme();
}
static frmMain()