singlevaluecontrol_user_con.../SingleValueControl/SingleValueControl.Designer.cs
Eugen Höglinger 4e699b9a86 Initialize
- Control zum Laden, Bearbeiten und Speichern von XML-Daten
2022-12-20 09:31:36 +01:00

201 lines
10 KiB
C#

namespace Eugen.ESystem.Windows.Forms
{
partial class SingleValueControl
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Komponenten-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SingleValueControl));
this.groupBoxValueControl = new System.Windows.Forms.GroupBox();
this.panel1 = new System.Windows.Forms.Panel();
this.checkBoxEncryptValues = new System.Windows.Forms.CheckBox();
this.checkBoxDefaultValue = new System.Windows.Forms.CheckBox();
this.buttonDown = new System.Windows.Forms.Button();
this.buttonUp = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonLoad = new System.Windows.Forms.Button();
this.dataGridViewValues = new System.Windows.Forms.DataGridView();
this.ColumnValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.textBoxKey = new System.Windows.Forms.TextBox();
this.labelKey = new System.Windows.Forms.Label();
this.textBoxGroup = new System.Windows.Forms.TextBox();
this.labelGroup = new System.Windows.Forms.Label();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
this.groupBoxValueControl.SuspendLayout();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewValues)).BeginInit();
this.SuspendLayout();
//
// groupBoxValueControl
//
resources.ApplyResources(this.groupBoxValueControl, "groupBoxValueControl");
this.groupBoxValueControl.Controls.Add(this.panel1);
this.groupBoxValueControl.Controls.Add(this.buttonDown);
this.groupBoxValueControl.Controls.Add(this.buttonUp);
this.groupBoxValueControl.Controls.Add(this.buttonSave);
this.groupBoxValueControl.Controls.Add(this.buttonLoad);
this.groupBoxValueControl.Controls.Add(this.dataGridViewValues);
this.groupBoxValueControl.Controls.Add(this.textBoxKey);
this.groupBoxValueControl.Controls.Add(this.labelKey);
this.groupBoxValueControl.Controls.Add(this.textBoxGroup);
this.groupBoxValueControl.Controls.Add(this.labelGroup);
this.groupBoxValueControl.Name = "groupBoxValueControl";
this.groupBoxValueControl.TabStop = false;
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Controls.Add(this.checkBoxEncryptValues);
this.panel1.Controls.Add(this.checkBoxDefaultValue);
this.panel1.Name = "panel1";
//
// checkBoxEncryptValues
//
resources.ApplyResources(this.checkBoxEncryptValues, "checkBoxEncryptValues");
this.checkBoxEncryptValues.Name = "checkBoxEncryptValues";
this.checkBoxEncryptValues.UseVisualStyleBackColor = true;
//
// checkBoxDefaultValue
//
resources.ApplyResources(this.checkBoxDefaultValue, "checkBoxDefaultValue");
this.checkBoxDefaultValue.Name = "checkBoxDefaultValue";
this.checkBoxDefaultValue.UseVisualStyleBackColor = true;
this.checkBoxDefaultValue.CheckedChanged += new System.EventHandler(this.checkBoxDefaultValue_CheckedChanged);
//
// buttonDown
//
resources.ApplyResources(this.buttonDown, "buttonDown");
this.buttonDown.BackgroundImage = global::Eugen.ESystem.Windows.Forms.Properties.Resources.Pfeil_unten;
this.buttonDown.Name = "buttonDown";
this.buttonDown.UseVisualStyleBackColor = true;
this.buttonDown.Click += new System.EventHandler(this.buttonDown_Click);
//
// buttonUp
//
resources.ApplyResources(this.buttonUp, "buttonUp");
this.buttonUp.BackgroundImage = global::Eugen.ESystem.Windows.Forms.Properties.Resources.Pfeil_oben;
this.buttonUp.Name = "buttonUp";
this.buttonUp.UseVisualStyleBackColor = true;
this.buttonUp.Click += new System.EventHandler(this.buttonUp_Click);
//
// buttonSave
//
resources.ApplyResources(this.buttonSave, "buttonSave");
this.buttonSave.Name = "buttonSave";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
//
// buttonLoad
//
resources.ApplyResources(this.buttonLoad, "buttonLoad");
this.buttonLoad.Name = "buttonLoad";
this.buttonLoad.UseVisualStyleBackColor = true;
this.buttonLoad.Click += new System.EventHandler(this.buttonLoad_Click);
//
// dataGridViewValues
//
this.dataGridViewValues.AllowUserToResizeColumns = false;
resources.ApplyResources(this.dataGridViewValues, "dataGridViewValues");
this.dataGridViewValues.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewValues.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ColumnValue});
this.dataGridViewValues.Name = "dataGridViewValues";
this.dataGridViewValues.RowEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewValues_RowEnter);
this.dataGridViewValues.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.dataGridViewValues_RowsAdded);
this.dataGridViewValues.RowsRemoved += new System.Windows.Forms.DataGridViewRowsRemovedEventHandler(this.dataGridViewValues_RowsRemoved);
this.dataGridViewValues.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridViewValues_KeyDown);
//
// ColumnValue
//
this.ColumnValue.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
resources.ApplyResources(this.ColumnValue, "ColumnValue");
this.ColumnValue.Name = "ColumnValue";
this.ColumnValue.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
//
// textBoxKey
//
resources.ApplyResources(this.textBoxKey, "textBoxKey");
this.textBoxKey.Name = "textBoxKey";
this.textBoxKey.TextChanged += new System.EventHandler(this.textBoxKey_TextChanged);
//
// labelKey
//
resources.ApplyResources(this.labelKey, "labelKey");
this.labelKey.Name = "labelKey";
//
// textBoxGroup
//
resources.ApplyResources(this.textBoxGroup, "textBoxGroup");
this.textBoxGroup.Name = "textBoxGroup";
this.textBoxGroup.TextChanged += new System.EventHandler(this.textBoxGroup_TextChanged);
//
// labelGroup
//
resources.ApplyResources(this.labelGroup, "labelGroup");
this.labelGroup.Name = "labelGroup";
//
// openFileDialog
//
this.openFileDialog.FileName = "openFileDialog";
resources.ApplyResources(this.openFileDialog, "openFileDialog");
//
// SingleValueControl
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.groupBoxValueControl);
this.Name = "SingleValueControl";
this.groupBoxValueControl.ResumeLayout(false);
this.groupBoxValueControl.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewValues)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBoxValueControl;
private System.Windows.Forms.Button buttonSave;
private System.Windows.Forms.Button buttonLoad;
private System.Windows.Forms.CheckBox checkBoxEncryptValues;
private System.Windows.Forms.DataGridView dataGridViewValues;
private System.Windows.Forms.TextBox textBoxKey;
private System.Windows.Forms.Label labelKey;
private System.Windows.Forms.TextBox textBoxGroup;
private System.Windows.Forms.Label labelGroup;
private System.Windows.Forms.Button buttonDown;
private System.Windows.Forms.Button buttonUp;
private System.Windows.Forms.OpenFileDialog openFileDialog;
private System.Windows.Forms.SaveFileDialog saveFileDialog;
private System.Windows.Forms.CheckBox checkBoxDefaultValue;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnValue;
}
}