Files
mRemoteNG/mRemoteV1/UI/Forms/OptionsPages/StartupExitPage.Designer.cs
2018-12-27 17:10:44 +01:00

106 lines
4.9 KiB
C#

namespace mRemoteNG.UI.Forms.OptionsPages
{
public sealed partial class StartupExitPage : OptionsPage
{
//UserControl overrides dispose to clean up the component list.
[System.Diagnostics.DebuggerNonUserCode()]protected override void Dispose(bool disposing)
{
try
{
if (disposing && components != null)
{
components.Dispose();
}
}
finally
{
base.Dispose(disposing);
}
}
//Required by the Windows Form Designer
private System.ComponentModel.Container components = null;
//NOTE: The following procedure is required by the Windows Form Designer
//It can be modified using the Windows Form Designer.
//Do not modify it using the code editor.
[System.Diagnostics.DebuggerStepThrough()]
private void InitializeComponent()
{
this.chkReconnectOnStart = new mRemoteNG.UI.Controls.Base.NGCheckBox();
this.chkSaveConsOnExit = new mRemoteNG.UI.Controls.Base.NGCheckBox();
this.chkSingleInstance = new mRemoteNG.UI.Controls.Base.NGCheckBox();
this.chkProperInstallationOfComponentsAtStartup = new mRemoteNG.UI.Controls.Base.NGCheckBox();
this.SuspendLayout();
//
// chkReconnectOnStart
//
this.chkReconnectOnStart._mice = mRemoteNG.UI.Controls.Base.NGCheckBox.MouseState.HOVER;
this.chkReconnectOnStart.AutoSize = true;
this.chkReconnectOnStart.Location = new System.Drawing.Point(3, 26);
this.chkReconnectOnStart.Name = "chkReconnectOnStart";
this.chkReconnectOnStart.Size = new System.Drawing.Size(273, 17);
this.chkReconnectOnStart.TabIndex = 1;
this.chkReconnectOnStart.Text = "Reconnect to previously opened sessions on startup";
this.chkReconnectOnStart.UseVisualStyleBackColor = true;
//
// chkSaveConsOnExit
//
this.chkSaveConsOnExit._mice = mRemoteNG.UI.Controls.Base.NGCheckBox.MouseState.HOVER;
this.chkSaveConsOnExit.AutoSize = true;
this.chkSaveConsOnExit.Location = new System.Drawing.Point(3, 2);
this.chkSaveConsOnExit.Name = "chkSaveConsOnExit";
this.chkSaveConsOnExit.Size = new System.Drawing.Size(146, 17);
this.chkSaveConsOnExit.TabIndex = 0;
this.chkSaveConsOnExit.Text = "Save connections on exit";
this.chkSaveConsOnExit.UseVisualStyleBackColor = true;
//
// chkSingleInstance
//
this.chkSingleInstance._mice = mRemoteNG.UI.Controls.Base.NGCheckBox.MouseState.HOVER;
this.chkSingleInstance.AutoSize = true;
this.chkSingleInstance.Location = new System.Drawing.Point(3, 50);
this.chkSingleInstance.Name = "chkSingleInstance";
this.chkSingleInstance.Size = new System.Drawing.Size(366, 17);
this.chkSingleInstance.TabIndex = 2;
this.chkSingleInstance.Text = "Allow only a single instance of the application (mRemote restart required)";
this.chkSingleInstance.UseVisualStyleBackColor = true;
//
// chkProperInstallationOfComponentsAtStartup
//
this.chkProperInstallationOfComponentsAtStartup._mice = mRemoteNG.UI.Controls.Base.NGCheckBox.MouseState.HOVER;
this.chkProperInstallationOfComponentsAtStartup.AutoSize = true;
this.chkProperInstallationOfComponentsAtStartup.Location = new System.Drawing.Point(3, 74);
this.chkProperInstallationOfComponentsAtStartup.Name = "chkProperInstallationOfComponentsAtStartup";
this.chkProperInstallationOfComponentsAtStartup.Size = new System.Drawing.Size(262, 17);
this.chkProperInstallationOfComponentsAtStartup.TabIndex = 3;
this.chkProperInstallationOfComponentsAtStartup.Text = "Check proper installation of components at startup";
this.chkProperInstallationOfComponentsAtStartup.UseVisualStyleBackColor = true;
//
// StartupExitPage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.chkReconnectOnStart);
this.Controls.Add(this.chkSaveConsOnExit);
this.Controls.Add(this.chkSingleInstance);
this.Controls.Add(this.chkProperInstallationOfComponentsAtStartup);
this.Name = "StartupExitPage";
this.Size = new System.Drawing.Size(610, 490);
this.Load += new System.EventHandler(this.StartupExitPage_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
internal Controls.Base.NGCheckBox chkReconnectOnStart;
internal Controls.Base.NGCheckBox chkSaveConsOnExit;
internal Controls.Base.NGCheckBox chkSingleInstance;
internal Controls.Base.NGCheckBox chkProperInstallationOfComponentsAtStartup;
}
}