diff --git a/.vs/DuoValueControl/FileContentIndex/5f5df918-1b6d-45e4-a964-5f292d9c77c2.vsidx b/.vs/DuoValueControl/FileContentIndex/5f5df918-1b6d-45e4-a964-5f292d9c77c2.vsidx
new file mode 100644
index 0000000..6e78a89
Binary files /dev/null and b/.vs/DuoValueControl/FileContentIndex/5f5df918-1b6d-45e4-a964-5f292d9c77c2.vsidx differ
diff --git a/.vs/DuoValueControl/FileContentIndex/9d3ba327-7d4c-468a-8bf6-bc076a93fd92.vsidx b/.vs/DuoValueControl/FileContentIndex/9d3ba327-7d4c-468a-8bf6-bc076a93fd92.vsidx
deleted file mode 100644
index 1f25e8b..0000000
Binary files a/.vs/DuoValueControl/FileContentIndex/9d3ba327-7d4c-468a-8bf6-bc076a93fd92.vsidx and /dev/null differ
diff --git a/.vs/DuoValueControl/v17/.suo b/.vs/DuoValueControl/v17/.suo
index 773d164..a238d94 100644
Binary files a/.vs/DuoValueControl/v17/.suo and b/.vs/DuoValueControl/v17/.suo differ
diff --git a/DuoValueControl/DuoValueControl.Designer.cs b/DuoValueControl/DuoValueControl.Designer.cs
index fe04cab..8ac4f54 100644
--- a/DuoValueControl/DuoValueControl.Designer.cs
+++ b/DuoValueControl/DuoValueControl.Designer.cs
@@ -30,22 +30,22 @@
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DuoValueControl));
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.checkBoxEncryptValues = new System.Windows.Forms.CheckBox();
this.dataGridViewValues = new System.Windows.Forms.DataGridView();
+ this.ColumnName = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.ColumnValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
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.panel1 = new System.Windows.Forms.Panel();
this.groupBoxValueControl.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridViewValues)).BeginInit();
this.panel1.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewValues)).BeginInit();
this.SuspendLayout();
//
// groupBoxValueControl
@@ -62,6 +62,18 @@
this.groupBoxValueControl.Name = "groupBoxValueControl";
this.groupBoxValueControl.TabStop = false;
//
+ // panel1
+ //
+ resources.ApplyResources(this.panel1, "panel1");
+ 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");
@@ -92,12 +104,6 @@
this.buttonLoad.UseVisualStyleBackColor = true;
this.buttonLoad.Click += new System.EventHandler(this.buttonLoad_Click);
//
- // checkBoxEncryptValues
- //
- resources.ApplyResources(this.checkBoxEncryptValues, "checkBoxEncryptValues");
- this.checkBoxEncryptValues.Name = "checkBoxEncryptValues";
- this.checkBoxEncryptValues.UseVisualStyleBackColor = true;
- //
// dataGridViewValues
//
resources.ApplyResources(this.dataGridViewValues, "dataGridViewValues");
@@ -109,6 +115,18 @@
this.dataGridViewValues.RowsRemoved += new System.Windows.Forms.DataGridViewRowsRemovedEventHandler(this.dataGridViewValues_RowsRemoved);
this.dataGridViewValues.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridViewValues_KeyDown);
//
+ // 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";
+ //
// textBoxGroup
//
resources.ApplyResources(this.textBoxGroup, "textBoxGroup");
@@ -125,24 +143,6 @@
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";
- //
- // panel1
- //
- resources.ApplyResources(this.panel1, "panel1");
- this.panel1.Controls.Add(this.checkBoxEncryptValues);
- this.panel1.Name = "panel1";
- //
// DuoValueControl
//
resources.ApplyResources(this, "$this");
@@ -151,9 +151,9 @@
this.Name = "DuoValueControl";
this.groupBoxValueControl.ResumeLayout(false);
this.groupBoxValueControl.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridViewValues)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewValues)).EndInit();
this.ResumeLayout(false);
}
diff --git a/DuoValueControl/DuoValueControl.resx b/DuoValueControl/DuoValueControl.resx
index 55447e0..449c6c1 100644
--- a/DuoValueControl/DuoValueControl.resx
+++ b/DuoValueControl/DuoValueControl.resx
@@ -167,7 +167,7 @@ values
235, 125
- 75, 66
+ 75, 67
11
@@ -194,7 +194,7 @@ values
NoControl
- 235, 197
+ 235, 198
75, 23
@@ -356,10 +356,10 @@ values
Top, Left, Right
- 70, 19
+ 109, 19
- 159, 20
+ 120, 20
1
@@ -457,18 +457,6 @@ values
316, 227
-
- openFileDialog
-
-
- System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- saveFileDialog
-
-
- System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
ColumnName
@@ -481,6 +469,18 @@ values
System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ openFileDialog
+
+
+ System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ saveFileDialog
+
+
+ System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
DuoValueControl
diff --git a/DuoValueControl/bin/Debug/de/hedvalcon.resources.dll b/DuoValueControl/bin/Debug/de/hedvalcon.resources.dll
index 7094be6..24164eb 100644
Binary files a/DuoValueControl/bin/Debug/de/hedvalcon.resources.dll and b/DuoValueControl/bin/Debug/de/hedvalcon.resources.dll differ
diff --git a/DuoValueControl/bin/Debug/en/hedvalcon.resources.dll b/DuoValueControl/bin/Debug/en/hedvalcon.resources.dll
index 114bd5b..4ded71a 100644
Binary files a/DuoValueControl/bin/Debug/en/hedvalcon.resources.dll and b/DuoValueControl/bin/Debug/en/hedvalcon.resources.dll differ
diff --git a/DuoValueControl/bin/Debug/hedvalcon.dll b/DuoValueControl/bin/Debug/hedvalcon.dll
index 1b1181b..af3b904 100644
Binary files a/DuoValueControl/bin/Debug/hedvalcon.dll and b/DuoValueControl/bin/Debug/hedvalcon.dll differ
diff --git a/DuoValueControl/bin/Debug/hedvalcon.pdb b/DuoValueControl/bin/Debug/hedvalcon.pdb
index fdf0bec..d20dd76 100644
Binary files a/DuoValueControl/bin/Debug/hedvalcon.pdb and b/DuoValueControl/bin/Debug/hedvalcon.pdb differ
diff --git a/DuoValueControl/obj/Debug/DuoValueControl.csproj.GenerateResource.cache b/DuoValueControl/obj/Debug/DuoValueControl.csproj.GenerateResource.cache
index 0f19eb2..e2c8ccf 100644
Binary files a/DuoValueControl/obj/Debug/DuoValueControl.csproj.GenerateResource.cache and b/DuoValueControl/obj/Debug/DuoValueControl.csproj.GenerateResource.cache differ
diff --git a/DuoValueControl/obj/Debug/Eugen.ESystem.Windows.Forms.DuoValueControl.resources b/DuoValueControl/obj/Debug/Eugen.ESystem.Windows.Forms.DuoValueControl.resources
index 6be0009..11a2655 100644
Binary files a/DuoValueControl/obj/Debug/Eugen.ESystem.Windows.Forms.DuoValueControl.resources and b/DuoValueControl/obj/Debug/Eugen.ESystem.Windows.Forms.DuoValueControl.resources differ
diff --git a/DuoValueControl/obj/Debug/de/hedvalcon.resources.dll b/DuoValueControl/obj/Debug/de/hedvalcon.resources.dll
index 7094be6..24164eb 100644
Binary files a/DuoValueControl/obj/Debug/de/hedvalcon.resources.dll and b/DuoValueControl/obj/Debug/de/hedvalcon.resources.dll differ
diff --git a/DuoValueControl/obj/Debug/en/hedvalcon.resources.dll b/DuoValueControl/obj/Debug/en/hedvalcon.resources.dll
index 114bd5b..4ded71a 100644
Binary files a/DuoValueControl/obj/Debug/en/hedvalcon.resources.dll and b/DuoValueControl/obj/Debug/en/hedvalcon.resources.dll differ
diff --git a/DuoValueControl/obj/Debug/hedvalcon.dll b/DuoValueControl/obj/Debug/hedvalcon.dll
index 1b1181b..af3b904 100644
Binary files a/DuoValueControl/obj/Debug/hedvalcon.dll and b/DuoValueControl/obj/Debug/hedvalcon.dll differ
diff --git a/DuoValueControl/obj/Debug/hedvalcon.pdb b/DuoValueControl/obj/Debug/hedvalcon.pdb
index fdf0bec..d20dd76 100644
Binary files a/DuoValueControl/obj/Debug/hedvalcon.pdb and b/DuoValueControl/obj/Debug/hedvalcon.pdb differ
diff --git a/HE-Test_Dll/bin/Debug/HE-Test_Dll.exe b/HE-Test_Dll/bin/Debug/HE-Test_Dll.exe
index 4bcf0e7..990e61d 100644
Binary files a/HE-Test_Dll/bin/Debug/HE-Test_Dll.exe and b/HE-Test_Dll/bin/Debug/HE-Test_Dll.exe differ
diff --git a/HE-Test_Dll/bin/Debug/HE-Test_Dll.pdb b/HE-Test_Dll/bin/Debug/HE-Test_Dll.pdb
index 8c53cbe..2cd9efa 100644
Binary files a/HE-Test_Dll/bin/Debug/HE-Test_Dll.pdb and b/HE-Test_Dll/bin/Debug/HE-Test_Dll.pdb differ
diff --git a/HE-Test_Dll/bin/Debug/de/hedvalcon.resources.dll b/HE-Test_Dll/bin/Debug/de/hedvalcon.resources.dll
index 7094be6..24164eb 100644
Binary files a/HE-Test_Dll/bin/Debug/de/hedvalcon.resources.dll and b/HE-Test_Dll/bin/Debug/de/hedvalcon.resources.dll differ
diff --git a/HE-Test_Dll/bin/Debug/en/hedvalcon.resources.dll b/HE-Test_Dll/bin/Debug/en/hedvalcon.resources.dll
index 114bd5b..4ded71a 100644
Binary files a/HE-Test_Dll/bin/Debug/en/hedvalcon.resources.dll and b/HE-Test_Dll/bin/Debug/en/hedvalcon.resources.dll differ
diff --git a/HE-Test_Dll/bin/Debug/hedvalcon.dll b/HE-Test_Dll/bin/Debug/hedvalcon.dll
index 1b1181b..af3b904 100644
Binary files a/HE-Test_Dll/bin/Debug/hedvalcon.dll and b/HE-Test_Dll/bin/Debug/hedvalcon.dll differ
diff --git a/HE-Test_Dll/bin/Debug/hedvalcon.pdb b/HE-Test_Dll/bin/Debug/hedvalcon.pdb
index fdf0bec..d20dd76 100644
Binary files a/HE-Test_Dll/bin/Debug/hedvalcon.pdb and b/HE-Test_Dll/bin/Debug/hedvalcon.pdb differ
diff --git a/HE-Test_Dll/obj/Debug/HE-Test_Dll.exe b/HE-Test_Dll/obj/Debug/HE-Test_Dll.exe
index 4bcf0e7..990e61d 100644
Binary files a/HE-Test_Dll/obj/Debug/HE-Test_Dll.exe and b/HE-Test_Dll/obj/Debug/HE-Test_Dll.exe differ
diff --git a/HE-Test_Dll/obj/Debug/HE-Test_Dll.pdb b/HE-Test_Dll/obj/Debug/HE-Test_Dll.pdb
index 8c53cbe..2cd9efa 100644
Binary files a/HE-Test_Dll/obj/Debug/HE-Test_Dll.pdb and b/HE-Test_Dll/obj/Debug/HE-Test_Dll.pdb differ
diff --git a/HE-Test_Dll/obj/Debug/HE-Test_DuoValueControl.csproj.AssemblyReference.cache b/HE-Test_Dll/obj/Debug/HE-Test_DuoValueControl.csproj.AssemblyReference.cache
index ec10d70..b7515e7 100644
Binary files a/HE-Test_Dll/obj/Debug/HE-Test_DuoValueControl.csproj.AssemblyReference.cache and b/HE-Test_Dll/obj/Debug/HE-Test_DuoValueControl.csproj.AssemblyReference.cache differ