197 lines
9.5 KiB
C#
197 lines
9.5 KiB
C#
namespace Eugen.ESystem.Windows.Forms
|
|
{
|
|
partial class TripleValueControl
|
|
{
|
|
/// <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(TripleValueControl));
|
|
this.groupBoxValueControl = new System.Windows.Forms.GroupBox();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.checkBoxEncryptValues = 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.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.ColumnName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnAttribut = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.buttonAddSeparator = new System.Windows.Forms.Button();
|
|
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.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.buttonAddSeparator);
|
|
this.panel1.Controls.Add(this.checkBoxEncryptValues);
|
|
this.panel1.Name = "panel1";
|
|
//
|
|
// checkBoxEncryptValues
|
|
//
|
|
resources.ApplyResources(this.checkBoxEncryptValues, "checkBoxEncryptValues");
|
|
this.checkBoxEncryptValues.Name = "checkBoxEncryptValues";
|
|
this.checkBoxEncryptValues.UseVisualStyleBackColor = true;
|
|
//
|
|
// 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
|
|
//
|
|
resources.ApplyResources(this.dataGridViewValues, "dataGridViewValues");
|
|
this.dataGridViewValues.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridViewValues.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.ColumnName,
|
|
this.ColumnValue,
|
|
this.ColumnAttribut});
|
|
this.dataGridViewValues.Name = "dataGridViewValues";
|
|
this.dataGridViewValues.RowsRemoved += new System.Windows.Forms.DataGridViewRowsRemovedEventHandler(this.dataGridViewValues_RowsRemoved);
|
|
this.dataGridViewValues.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridViewValues_KeyDown);
|
|
//
|
|
// 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");
|
|
//
|
|
// ColumnName
|
|
//
|
|
resources.ApplyResources(this.ColumnName, "ColumnName");
|
|
this.ColumnName.Name = "ColumnName";
|
|
this.ColumnName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
|
|
//
|
|
// ColumnValue
|
|
//
|
|
this.ColumnValue.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
resources.ApplyResources(this.ColumnValue, "ColumnValue");
|
|
this.ColumnValue.Name = "ColumnValue";
|
|
//
|
|
// ColumnAttribut
|
|
//
|
|
resources.ApplyResources(this.ColumnAttribut, "ColumnAttribut");
|
|
this.ColumnAttribut.Name = "ColumnAttribut";
|
|
//
|
|
// buttonAddSeparator
|
|
//
|
|
resources.ApplyResources(this.buttonAddSeparator, "buttonAddSeparator");
|
|
this.buttonAddSeparator.Name = "buttonAddSeparator";
|
|
this.buttonAddSeparator.UseVisualStyleBackColor = true;
|
|
this.buttonAddSeparator.Click += new System.EventHandler(this.buttonAddSeparator_Click);
|
|
//
|
|
// TripleValueControl
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.groupBoxValueControl);
|
|
this.Name = "TripleValueControl";
|
|
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 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.Panel panel1;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnName;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnValue;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnAttribut;
|
|
private System.Windows.Forms.Button buttonAddSeparator;
|
|
}
|
|
}
|