mirror of
https://github.com/kwsch/NHSE.git
synced 2026-09-27 04:19:36 -05:00
Add automatic backup, add program settings editor
This commit is contained in:
65
NHSE.WinForms/Subforms/Program/SettingsEditor.Designer.cs
generated
Normal file
65
NHSE.WinForms/Subforms/Program/SettingsEditor.Designer.cs
generated
Normal file
@@ -0,0 +1,65 @@
|
||||
namespace NHSE.WinForms
|
||||
{
|
||||
partial class SettingsEditor
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.PG_Settings = new System.Windows.Forms.PropertyGrid();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// PG_Settings
|
||||
//
|
||||
this.PG_Settings.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.PG_Settings.Location = new System.Drawing.Point(0, 0);
|
||||
this.PG_Settings.Name = "PG_Settings";
|
||||
this.PG_Settings.Size = new System.Drawing.Size(322, 310);
|
||||
this.PG_Settings.TabIndex = 0;
|
||||
//
|
||||
// SettingsEditor
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(322, 310);
|
||||
this.Controls.Add(this.PG_Settings);
|
||||
this.Icon = global::NHSE.WinForms.Properties.Resources.icon;
|
||||
this.KeyPreview = true;
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "SettingsEditor";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "Settings Editor";
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SettingsEditor_FormClosing);
|
||||
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SettingsEditor_KeyDown);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.PropertyGrid PG_Settings;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user