mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-22 01:34:51 -05:00
65 lines
2.4 KiB
C#
65 lines
2.4 KiB
C#
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.Inherit;
|
|
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.CenterParent;
|
|
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;
|
|
}
|
|
} |