Compare commits

...

10 Commits

Author SHA1 Message Date
Eugen Höglinger
a474fc4395 Datei gelöscht 2023-10-03 13:37:59 +02:00
Eugen Höglinger
74b53951b4 Neue Datei 2023-10-03 13:37:15 +02:00
Eugen Höglinger
666d7cc5e5 Datei dazu 2023-10-03 13:33:10 +02:00
Eugen Höglinger
b5563cec4b Korrigiert
- Repo-Pfad
2023-10-03 13:31:30 +02:00
Eugen Höglinger
6df0313cc6 Korrigiert
- Bezeichnung des Test-Fensters korrigiert
2023-08-31 09:31:33 +02:00
Eugen Höglinger
6051e011d5 Ausgabe korrigiert
- Zeigt jetzt die richtige Übersetzung an
2022-12-21 17:18:35 +01:00
Eugen Höglinger
07c250aebe Text angepasst
- englischer Text ist 'Encrypt'
- Deutscher Text ist 'Chiffrieren'
2022-12-20 17:24:59 +01:00
Eugen Höglinger
3ffb65378a Erfolgsmeldung beim Speichern
- Nach dem Speichern eine Erfolgsmeldung ausgeben
2022-12-01 16:33:21 +01:00
Eugen Höglinger
8290c7b555 Eingabefelder verkleinert
- damit für die Bereichs- und Schlüssel-Bezeichnung mehr Platz bleibt
2022-11-23 15:35:58 +01:00
Eugen Höglinger
484e637979 Initial Directory korrigiert 2022-11-22 07:29:06 +01:00
67 changed files with 579 additions and 407 deletions

Binary file not shown.

View File

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<NX-Portal xmlns="https://www.engelglobal.com/de/at/index.html"> <NX-Portal xmlns="https://www.engelglobal.com/de/at/index.html">
<NX_1953 x1="$$$$S7YxfGArYNmGwbmzS4nm1g==" /> <NX_1953 aaa="bbb" />
<NX_1953 y2="$$$$nqJGUbGGlaUdO183MBXJ1w==" /> <NX_1953 ccc="ddd" />
<NX_1953 z3="$$$$GW4BrEDIAarJjXy1GWwFeA==" />
</NX-Portal> </NX-Portal>

5
Daten/Test1_Test1.xml Normal file
View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<NX-Portal xmlns="https://www.engelglobal.com/de/at/index.html">
<Test1 aaaa="bbbb" />
<Test1 cccc="dddd" />
</NX-Portal>

5
Daten/Test1_Test2.xml Normal file
View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<NX-Portal xmlns="https://www.engelglobal.com/de/at/index.html">
<Test2 eee="fff" />
<Test2 ggg="hhh" />
</NX-Portal>

View File

@ -30,22 +30,22 @@
{ {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DuoValueControl)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DuoValueControl));
this.groupBoxValueControl = new System.Windows.Forms.GroupBox(); 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.buttonDown = new System.Windows.Forms.Button();
this.buttonUp = new System.Windows.Forms.Button(); this.buttonUp = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button(); this.buttonSave = new System.Windows.Forms.Button();
this.buttonLoad = 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.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.textBoxGroup = new System.Windows.Forms.TextBox();
this.labelGroup = new System.Windows.Forms.Label(); this.labelGroup = new System.Windows.Forms.Label();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); 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(); this.groupBoxValueControl.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewValues)).BeginInit();
this.panel1.SuspendLayout(); this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewValues)).BeginInit();
this.SuspendLayout(); this.SuspendLayout();
// //
// groupBoxValueControl // groupBoxValueControl
@ -62,6 +62,18 @@
this.groupBoxValueControl.Name = "groupBoxValueControl"; this.groupBoxValueControl.Name = "groupBoxValueControl";
this.groupBoxValueControl.TabStop = false; 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 // buttonDown
// //
resources.ApplyResources(this.buttonDown, "buttonDown"); resources.ApplyResources(this.buttonDown, "buttonDown");
@ -92,12 +104,6 @@
this.buttonLoad.UseVisualStyleBackColor = true; this.buttonLoad.UseVisualStyleBackColor = true;
this.buttonLoad.Click += new System.EventHandler(this.buttonLoad_Click); this.buttonLoad.Click += new System.EventHandler(this.buttonLoad_Click);
// //
// checkBoxEncryptValues
//
resources.ApplyResources(this.checkBoxEncryptValues, "checkBoxEncryptValues");
this.checkBoxEncryptValues.Name = "checkBoxEncryptValues";
this.checkBoxEncryptValues.UseVisualStyleBackColor = true;
//
// dataGridViewValues // dataGridViewValues
// //
resources.ApplyResources(this.dataGridViewValues, "dataGridViewValues"); resources.ApplyResources(this.dataGridViewValues, "dataGridViewValues");
@ -109,6 +115,18 @@
this.dataGridViewValues.RowsRemoved += new System.Windows.Forms.DataGridViewRowsRemovedEventHandler(this.dataGridViewValues_RowsRemoved); this.dataGridViewValues.RowsRemoved += new System.Windows.Forms.DataGridViewRowsRemovedEventHandler(this.dataGridViewValues_RowsRemoved);
this.dataGridViewValues.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridViewValues_KeyDown); 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 // textBoxGroup
// //
resources.ApplyResources(this.textBoxGroup, "textBoxGroup"); resources.ApplyResources(this.textBoxGroup, "textBoxGroup");
@ -125,23 +143,9 @@
this.openFileDialog.FileName = "openFileDialog"; this.openFileDialog.FileName = "openFileDialog";
resources.ApplyResources(this.openFileDialog, "openFileDialog"); resources.ApplyResources(this.openFileDialog, "openFileDialog");
// //
// ColumnName // saveFileDialog
// //
resources.ApplyResources(this.ColumnName, "ColumnName"); resources.ApplyResources(this.saveFileDialog, "saveFileDialog");
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 // DuoValueControl
// //
@ -151,9 +155,9 @@
this.Name = "DuoValueControl"; this.Name = "DuoValueControl";
this.groupBoxValueControl.ResumeLayout(false); this.groupBoxValueControl.ResumeLayout(false);
this.groupBoxValueControl.PerformLayout(); this.groupBoxValueControl.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewValues)).EndInit();
this.panel1.ResumeLayout(false); this.panel1.ResumeLayout(false);
this.panel1.PerformLayout(); this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewValues)).EndInit();
this.ResumeLayout(false); this.ResumeLayout(false);
} }

View File

@ -118,7 +118,7 @@ namespace Eugen.ESystem.Windows.Forms
public DuoValueControl() public DuoValueControl()
{ {
InitializeComponent(); InitializeComponent();
InitialDirectory = @"C:\\"; InitialDirectory = @"C:\";
Topic = "Topic"; Topic = "Topic";
StandardValue = 0; StandardValue = 0;
} }
@ -426,7 +426,7 @@ namespace Eugen.ESystem.Windows.Forms
value = dataGridViewValues[1, i].Value.ToString(); //Unverschlüsselt value = dataGridViewValues[1, i].Value.ToString(); //Unverschlüsselt
} }
keys[i] = dataGridViewValues[0, i].Value.ToString(); ; keys[i] = dataGridViewValues[0, i].Value.ToString();
values[i] = value; values[i] = value;
} }

View File

@ -70,6 +70,9 @@
<Service Include="{94E38DFF-614B-4cbd-B67C-F211BB35CE8B}" /> <Service Include="{94E38DFF-614B-4cbd-B67C-F211BB35CE8B}" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<EmbeddedResource Include="DuoValueControl.en.resx">
<DependentUpon>DuoValueControl.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\AppResources.de.resx" /> <EmbeddedResource Include="Properties\AppResources.de.resx" />
<EmbeddedResource Include="Properties\AppResources.en.resx" /> <EmbeddedResource Include="Properties\AppResources.en.resx" />
<EmbeddedResource Include="Properties\AppResources.resx"> <EmbeddedResource Include="Properties\AppResources.resx">

View File

@ -117,25 +117,21 @@
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="checkBoxEncryptValues.Size" type="System.Drawing.Size, System.Drawing">
<value>73, 17</value>
</data>
<data name="checkBoxEncryptValues.Text" xml:space="preserve">
<value>Chiffrieren</value>
</data>
<data name="buttonSave.Text" xml:space="preserve"> <data name="buttonSave.Text" xml:space="preserve">
<value>Speichern</value> <value>Speichern</value>
</data> </data>
<data name="buttonLoad.Text" xml:space="preserve"> <data name="buttonLoad.Text" xml:space="preserve">
<value>Laden</value> <value>Laden</value>
</data> </data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> <data name="ColumnValue.HeaderText" xml:space="preserve">
<data name="checkBoxEncryptValues.Size" type="System.Drawing.Size, System.Drawing"> <value>Alle Werte</value>
<value>76, 30</value>
</data>
<data name="checkBoxEncryptValues.Text" xml:space="preserve">
<value>Werte ver-
schlüsseln</value>
</data>
<data name="labelKey.Size" type="System.Drawing.Size, System.Drawing">
<value>52, 13</value>
</data>
<data name="labelKey.Text" xml:space="preserve">
<value>Schlüssel</value>
</data> </data>
<data name="labelGroup.Size" type="System.Drawing.Size, System.Drawing"> <data name="labelGroup.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 13</value> <value>42, 13</value>
@ -146,7 +142,4 @@ schlüsseln</value>
<data name="groupBoxValueControl.Text" xml:space="preserve"> <data name="groupBoxValueControl.Text" xml:space="preserve">
<value>Werte Steuerung</value> <value>Werte Steuerung</value>
</data> </data>
<data name="ColumnValue.HeaderText" xml:space="preserve">
<value>Alle Werte</value>
</data>
</root> </root>

View File

@ -0,0 +1,127 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="checkBoxEncryptValues.Size" type="System.Drawing.Size, System.Drawing">
<value>62, 17</value>
</data>
<data name="checkBoxEncryptValues.Text" xml:space="preserve">
<value>Encrypt</value>
</data>
</root>

View File

@ -117,374 +117,373 @@
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<metadata name="groupBoxValueControl.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="groupBoxValueControl.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Bottom, Left, Right</value>
</data>
<data name="panel1.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="checkBoxEncryptValues.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="checkBoxEncryptValues.Enabled" type="System.Boolean, mscorlib">
<value>False</value>
</data>
<data name="checkBoxEncryptValues.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="checkBoxEncryptValues.Location" type="System.Drawing.Point, System.Drawing"> <data name="buttonUp.Size" type="System.Drawing.Size, System.Drawing">
<value>0, 17</value> <value>75, 23</value>
</data> </data>
<data name="checkBoxEncryptValues.Size" type="System.Drawing.Size, System.Drawing"> <data name="labelGroup.Location" type="System.Drawing.Point, System.Drawing">
<value>62, 30</value> <value>6, 22</value>
</data>
<data name="checkBoxEncryptValues.TabIndex" type="System.Int32, mscorlib">
<value>6</value>
</data>
<data name="checkBoxEncryptValues.Text" xml:space="preserve">
<value>Encrypt
values</value>
</data>
<data name="&gt;&gt;checkBoxEncryptValues.Name" xml:space="preserve">
<value>checkBoxEncryptValues</value>
</data> </data>
<data name="&gt;&gt;checkBoxEncryptValues.Type" xml:space="preserve"> <data name="&gt;&gt;checkBoxEncryptValues.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<data name="&gt;&gt;checkBoxEncryptValues.Parent" xml:space="preserve"> <data name="checkBoxEncryptValues.Text" xml:space="preserve">
<value>panel1</value> <value>Encrypt</value>
</data>
<data name="&gt;&gt;checkBoxEncryptValues.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="panel1.Location" type="System.Drawing.Point, System.Drawing">
<value>235, 125</value>
</data>
<data name="panel1.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 66</value>
</data>
<data name="panel1.TabIndex" type="System.Int32, mscorlib">
<value>11</value>
</data>
<data name="&gt;&gt;panel1.Name" xml:space="preserve">
<value>panel1</value>
</data>
<data name="&gt;&gt;panel1.Type" xml:space="preserve">
<value>System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<data name="&gt;&gt;panel1.Parent" xml:space="preserve"> <data name="&gt;&gt;panel1.Parent" xml:space="preserve">
<value>groupBoxValueControl</value> <value>groupBoxValueControl</value>
</data> </data>
<data name="&gt;&gt;panel1.ZOrder" xml:space="preserve"> <data name="&gt;&gt;dataGridViewValues.Type" xml:space="preserve">
<value>0</value> <value>System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<data name="buttonDown.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <data name="&gt;&gt;panel1.Name" xml:space="preserve">
<value>Top, Right</value> <value>panel1</value>
</data> </data>
<data name="buttonDown.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms"> <data name="&gt;&gt;buttonLoad.Parent" xml:space="preserve">
<value>Zoom</value>
</data>
<data name="buttonDown.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="buttonDown.Location" type="System.Drawing.Point, System.Drawing">
<value>235, 197</value>
</data>
<data name="buttonDown.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 23</value>
</data>
<data name="buttonDown.TabIndex" type="System.Int32, mscorlib">
<value>10</value>
</data>
<data name="&gt;&gt;buttonDown.Name" xml:space="preserve">
<value>buttonDown</value>
</data>
<data name="&gt;&gt;buttonDown.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;buttonDown.Parent" xml:space="preserve">
<value>groupBoxValueControl</value> <value>groupBoxValueControl</value>
</data> </data>
<data name="&gt;&gt;buttonDown.ZOrder" xml:space="preserve"> <data name="&gt;&gt;labelGroup.Type" xml:space="preserve">
<value>1</value> <value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<data name="buttonUp.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <data name="&gt;&gt;$this.Type" xml:space="preserve">
<value>Top, Right</value> <value>System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="buttonUp.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms"> <data name="buttonUp.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
<value>Zoom</value> <value>Zoom</value>
</data> </data>
<data name="buttonUp.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="groupBoxValueControl.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>NoControl</value> <value>Top, Bottom, Left, Right</value>
</data>
<data name="buttonUp.Location" type="System.Drawing.Point, System.Drawing">
<value>235, 96</value>
</data>
<data name="buttonUp.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 23</value>
</data>
<data name="buttonUp.TabIndex" type="System.Int32, mscorlib">
<value>9</value>
</data> </data>
<data name="&gt;&gt;buttonUp.Name" xml:space="preserve"> <data name="&gt;&gt;buttonUp.Name" xml:space="preserve">
<value>buttonUp</value> <value>buttonUp</value>
</data> </data>
<data name="&gt;&gt;buttonUp.Type" xml:space="preserve"> <data name="&gt;&gt;buttonDown.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="&gt;&gt;buttonUp.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="buttonUp.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="buttonSave.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="&gt;&gt;buttonSave.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<data name="&gt;&gt;buttonUp.Parent" xml:space="preserve"> <data name="&gt;&gt;buttonUp.Parent" xml:space="preserve">
<value>groupBoxValueControl</value> <value>groupBoxValueControl</value>
</data> </data>
<data name="&gt;&gt;buttonUp.ZOrder" xml:space="preserve"> <assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<value>2</value> <data name="checkBoxEncryptValues.Enabled" type="System.Boolean, mscorlib">
</data>
<data name="buttonSave.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="buttonSave.Enabled" type="System.Boolean, mscorlib">
<value>False</value> <value>False</value>
</data> </data>
<data name="buttonSave.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="buttonSave.Location" type="System.Drawing.Point, System.Drawing">
<value>235, 43</value>
</data>
<data name="buttonSave.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 23</value>
</data>
<data name="buttonSave.TabIndex" type="System.Int32, mscorlib">
<value>8</value>
</data>
<data name="buttonSave.Text" xml:space="preserve">
<value>Save</value>
</data>
<data name="&gt;&gt;buttonSave.Name" xml:space="preserve">
<value>buttonSave</value>
</data>
<data name="&gt;&gt;buttonSave.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;buttonSave.Parent" xml:space="preserve">
<value>groupBoxValueControl</value>
</data>
<data name="&gt;&gt;buttonSave.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="buttonLoad.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="buttonLoad.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="buttonLoad.Location" type="System.Drawing.Point, System.Drawing"> <data name="buttonLoad.Location" type="System.Drawing.Point, System.Drawing">
<value>235, 17</value> <value>235, 17</value>
</data> </data>
<data name="buttonLoad.Size" type="System.Drawing.Size, System.Drawing"> <data name="&gt;&gt;ColumnValue.Type" xml:space="preserve">
<value>75, 23</value> <value>System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="buttonLoad.TabIndex" type="System.Int32, mscorlib">
<value>7</value>
</data> </data>
<data name="buttonLoad.Text" xml:space="preserve"> <data name="buttonLoad.Text" xml:space="preserve">
<value>Load</value> <value>Load</value>
</data> </data>
<data name="&gt;&gt;buttonLoad.Name" xml:space="preserve"> <data name="&gt;&gt;groupBoxValueControl.ZOrder" xml:space="preserve">
<value>buttonLoad</value>
</data>
<data name="&gt;&gt;buttonLoad.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;buttonLoad.Parent" xml:space="preserve">
<value>groupBoxValueControl</value>
</data>
<data name="&gt;&gt;buttonLoad.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<data name="dataGridViewValues.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Bottom, Left, Right</value>
</data>
<metadata name="ColumnName.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<data name="ColumnName.HeaderText" xml:space="preserve">
<value>Variable Name</value>
</data>
<data name="ColumnName.MinimumWidth" type="System.Int32, mscorlib">
<value>90</value>
</data>
<data name="ColumnName.Width" type="System.Int32, mscorlib">
<value>90</value>
</data>
<metadata name="ColumnValue.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<data name="ColumnValue.HeaderText" xml:space="preserve">
<value>Variable Value</value>
</data>
<data name="ColumnValue.MinimumWidth" type="System.Int32, mscorlib">
<value>90</value>
</data>
<data name="dataGridViewValues.Location" type="System.Drawing.Point, System.Drawing">
<value>6, 45</value>
</data>
<data name="dataGridViewValues.Size" type="System.Drawing.Size, System.Drawing">
<value>223, 176</value>
</data>
<data name="dataGridViewValues.TabIndex" type="System.Int32, mscorlib">
<value>4</value>
</data>
<data name="&gt;&gt;dataGridViewValues.Name" xml:space="preserve">
<value>dataGridViewValues</value>
</data>
<data name="&gt;&gt;dataGridViewValues.Type" xml:space="preserve">
<value>System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;dataGridViewValues.Parent" xml:space="preserve">
<value>groupBoxValueControl</value>
</data>
<data name="&gt;&gt;dataGridViewValues.ZOrder" xml:space="preserve">
<value>5</value>
</data>
<data name="textBoxGroup.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Left, Right</value>
</data>
<data name="textBoxGroup.Location" type="System.Drawing.Point, System.Drawing">
<value>70, 19</value>
</data>
<data name="textBoxGroup.Size" type="System.Drawing.Size, System.Drawing">
<value>159, 20</value>
</data>
<data name="textBoxGroup.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="&gt;&gt;textBoxGroup.Name" xml:space="preserve">
<value>textBoxGroup</value>
</data>
<data name="&gt;&gt;textBoxGroup.Type" xml:space="preserve">
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;textBoxGroup.Parent" xml:space="preserve">
<value>groupBoxValueControl</value>
</data>
<data name="&gt;&gt;textBoxGroup.ZOrder" xml:space="preserve">
<value>6</value>
</data>
<data name="labelGroup.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="labelGroup.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="labelGroup.Location" type="System.Drawing.Point, System.Drawing">
<value>6, 22</value>
</data>
<data name="labelGroup.Size" type="System.Drawing.Size, System.Drawing">
<value>36, 13</value>
</data>
<data name="labelGroup.TabIndex" type="System.Int32, mscorlib">
<value>0</value> <value>0</value>
</data> </data>
<data name="labelGroup.Text" xml:space="preserve">
<value>Group</value>
</data>
<data name="&gt;&gt;labelGroup.Name" xml:space="preserve">
<value>labelGroup</value>
</data>
<data name="&gt;&gt;labelGroup.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;labelGroup.Parent" xml:space="preserve">
<value>groupBoxValueControl</value>
</data>
<data name="&gt;&gt;labelGroup.ZOrder" xml:space="preserve"> <data name="&gt;&gt;labelGroup.ZOrder" xml:space="preserve">
<value>7</value> <value>7</value>
</data> </data>
<data name="groupBoxValueControl.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="buttonSave.Location" type="System.Drawing.Point, System.Drawing">
<value>NoControl</value> <value>235, 43</value>
</data> </data>
<data name="groupBoxValueControl.Location" type="System.Drawing.Point, System.Drawing"> <data name="dataGridViewValues.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>0, 0</value> <value>Top, Bottom, Left, Right</value>
</data>
<data name="groupBoxValueControl.Size" type="System.Drawing.Size, System.Drawing">
<value>316, 227</value>
</data>
<data name="groupBoxValueControl.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="groupBoxValueControl.Text" xml:space="preserve">
<value>Value control</value>
</data>
<data name="&gt;&gt;groupBoxValueControl.Name" xml:space="preserve">
<value>groupBoxValueControl</value>
</data>
<data name="&gt;&gt;groupBoxValueControl.Type" xml:space="preserve">
<value>System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;groupBoxValueControl.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;groupBoxValueControl.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<metadata name="openFileDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="openFileDialog.Title" xml:space="preserve">
<value>Load XML file</value>
</data>
<metadata name="saveFileDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>150, 17</value>
</metadata>
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
<value>6, 13</value>
</data>
<data name="$this.MaximumSize" type="System.Drawing.Size, System.Drawing">
<value>800, 227</value>
</data>
<data name="$this.MinimumSize" type="System.Drawing.Size, System.Drawing">
<value>316, 227</value>
</data>
<data name="$this.Size" type="System.Drawing.Size, System.Drawing">
<value>316, 227</value>
</data>
<data name="&gt;&gt;openFileDialog.Name" xml:space="preserve">
<value>openFileDialog</value>
</data>
<data name="&gt;&gt;openFileDialog.Type" xml:space="preserve">
<value>System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;saveFileDialog.Name" xml:space="preserve">
<value>saveFileDialog</value>
</data> </data>
<data name="&gt;&gt;saveFileDialog.Type" xml:space="preserve"> <data name="&gt;&gt;saveFileDialog.Type" xml:space="preserve">
<value>System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<data name="&gt;&gt;buttonLoad.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="textBoxGroup.Location" type="System.Drawing.Point, System.Drawing">
<value>109, 19</value>
</data>
<data name="panel1.Location" type="System.Drawing.Point, System.Drawing">
<value>235, 125</value>
</data>
<data name="labelGroup.Text" xml:space="preserve">
<value>Group</value>
</data>
<data name="ColumnName.MinimumWidth" type="System.Int32, mscorlib">
<value>90</value>
</data>
<data name="&gt;&gt;dataGridViewValues.ZOrder" xml:space="preserve">
<value>5</value>
</data>
<data name="&gt;&gt;checkBoxEncryptValues.Parent" xml:space="preserve">
<value>panel1</value>
</data>
<data name="buttonUp.Location" type="System.Drawing.Point, System.Drawing">
<value>235, 96</value>
</data>
<data name="&gt;&gt;buttonLoad.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<data name="checkBoxEncryptValues.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="&gt;&gt;groupBoxValueControl.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="labelGroup.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="&gt;&gt;ColumnName.Name" xml:space="preserve"> <data name="&gt;&gt;ColumnName.Name" xml:space="preserve">
<value>ColumnName</value> <value>ColumnName</value>
</data> </data>
<data name="&gt;&gt;ColumnName.Type" xml:space="preserve"> <data name="&gt;&gt;labelGroup.Parent" xml:space="preserve">
<value>System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>groupBoxValueControl</value>
</data> </data>
<data name="&gt;&gt;ColumnValue.Name" xml:space="preserve"> <data name="groupBoxValueControl.Text" xml:space="preserve">
<value>ColumnValue</value> <value>Value control</value>
</data> </data>
<data name="&gt;&gt;ColumnValue.Type" xml:space="preserve"> <data name="dataGridViewValues.Location" type="System.Drawing.Point, System.Drawing">
<value>System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>6, 45</value>
</data>
<data name="buttonLoad.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="buttonSave.Text" xml:space="preserve">
<value>Save</value>
</data>
<data name="buttonSave.Enabled" type="System.Boolean, mscorlib">
<value>False</value>
</data>
<data name="&gt;&gt;groupBoxValueControl.Type" xml:space="preserve">
<value>System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="buttonUp.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="$this.MaximumSize" type="System.Drawing.Size, System.Drawing">
<value>800, 227</value>
</data>
<data name="&gt;&gt;buttonSave.Name" xml:space="preserve">
<value>buttonSave</value>
</data>
<data name="&gt;&gt;buttonSave.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="checkBoxEncryptValues.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 25</value>
</data>
<data name="&gt;&gt;checkBoxEncryptValues.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="&gt;&gt;saveFileDialog.Name" xml:space="preserve">
<value>saveFileDialog</value>
</data>
<data name="buttonDown.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="$this.Size" type="System.Drawing.Size, System.Drawing">
<value>316, 227</value>
</data>
<data name="&gt;&gt;buttonDown.Parent" xml:space="preserve">
<value>groupBoxValueControl</value>
</data>
<data name="&gt;&gt;textBoxGroup.Parent" xml:space="preserve">
<value>groupBoxValueControl</value>
</data>
<data name="buttonDown.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 23</value>
</data>
<data name="groupBoxValueControl.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 0</value>
</data>
<data name="&gt;&gt;openFileDialog.Type" xml:space="preserve">
<value>System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="buttonDown.TabIndex" type="System.Int32, mscorlib">
<value>10</value>
</data>
<data name="buttonDown.Location" type="System.Drawing.Point, System.Drawing">
<value>235, 198</value>
</data>
<data name="ColumnValue.MinimumWidth" type="System.Int32, mscorlib">
<value>90</value>
</data>
<data name="textBoxGroup.Size" type="System.Drawing.Size, System.Drawing">
<value>120, 20</value>
</data>
<data name="ColumnValue.HeaderText" xml:space="preserve">
<value>Variable Value</value>
</data>
<data name="openFileDialog.Title" xml:space="preserve">
<value>Load XML file</value>
</data>
<data name="&gt;&gt;dataGridViewValues.Parent" xml:space="preserve">
<value>groupBoxValueControl</value>
</data>
<data name="buttonLoad.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="panel1.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="buttonSave.TabIndex" type="System.Int32, mscorlib">
<value>8</value>
</data>
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
<value>6, 13</value>
</data>
<data name="&gt;&gt;groupBoxValueControl.Name" xml:space="preserve">
<value>groupBoxValueControl</value>
</data>
<data name="buttonDown.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
<value>Zoom</value>
</data>
<data name="labelGroup.Size" type="System.Drawing.Size, System.Drawing">
<value>36, 13</value>
</data>
<data name="buttonSave.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 23</value>
</data>
<data name="ColumnName.HeaderText" xml:space="preserve">
<value>Variable Name</value>
</data>
<data name="&gt;&gt;panel1.Type" xml:space="preserve">
<value>System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;buttonSave.Parent" xml:space="preserve">
<value>groupBoxValueControl</value>
</data>
<data name="&gt;&gt;openFileDialog.Name" xml:space="preserve">
<value>openFileDialog</value>
</data>
<data name="&gt;&gt;buttonUp.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="labelGroup.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="&gt;&gt;dataGridViewValues.Name" xml:space="preserve">
<value>dataGridViewValues</value>
</data>
<data name="groupBoxValueControl.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="dataGridViewValues.TabIndex" type="System.Int32, mscorlib">
<value>4</value>
</data>
<data name="textBoxGroup.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="&gt;&gt;checkBoxEncryptValues.Name" xml:space="preserve">
<value>checkBoxEncryptValues</value>
</data> </data>
<data name="&gt;&gt;$this.Name" xml:space="preserve"> <data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>DuoValueControl</value> <value>DuoValueControl</value>
</data> </data>
<data name="&gt;&gt;$this.Type" xml:space="preserve"> <data name="&gt;&gt;ColumnValue.Name" xml:space="preserve">
<value>System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>ColumnValue</value>
</data> </data>
<data name="groupBoxValueControl.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="&gt;&gt;labelGroup.Name" xml:space="preserve">
<value>labelGroup</value>
</data>
<data name="buttonDown.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="checkBoxEncryptValues.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="&gt;&gt;textBoxGroup.Name" xml:space="preserve">
<value>textBoxGroup</value>
</data>
<data name="&gt;&gt;textBoxGroup.ZOrder" xml:space="preserve">
<value>6</value>
</data>
<data name="&gt;&gt;panel1.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="&gt;&gt;buttonDown.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="buttonLoad.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 23</value>
</data>
<data name="buttonUp.TabIndex" type="System.Int32, mscorlib">
<value>9</value>
</data>
<data name="&gt;&gt;textBoxGroup.Type" xml:space="preserve">
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;buttonDown.Name" xml:space="preserve">
<value>buttonDown</value>
</data>
<data name="&gt;&gt;buttonLoad.Name" xml:space="preserve">
<value>buttonLoad</value>
</data>
<data name="buttonLoad.TabIndex" type="System.Int32, mscorlib">
<value>7</value>
</data>
<data name="panel1.TabIndex" type="System.Int32, mscorlib">
<value>11</value>
</data>
<data name="buttonSave.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value>
</data>
<data name="dataGridViewValues.Size" type="System.Drawing.Size, System.Drawing">
<value>223, 176</value>
</data>
<data name="checkBoxEncryptValues.Size" type="System.Drawing.Size, System.Drawing">
<value>62, 17</value>
</data>
<data name="checkBoxEncryptValues.TabIndex" type="System.Int32, mscorlib">
<value>6</value>
</data>
<data name="textBoxGroup.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Left, Right</value>
</data>
<data name="ColumnName.Width" type="System.Int32, mscorlib">
<value>90</value>
</data>
<data name="&gt;&gt;ColumnName.Type" xml:space="preserve">
<value>System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="groupBoxValueControl.Size" type="System.Drawing.Size, System.Drawing">
<value>316, 227</value>
</data>
<data name="$this.MinimumSize" type="System.Drawing.Size, System.Drawing">
<value>316, 227</value>
</data>
<data name="panel1.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 67</value>
</data>
<data name="labelGroup.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<metadata name="saveFileDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>150, 17</value>
</metadata>
<metadata name="groupBoxValueControl.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="openFileDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="ColumnValue.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="ColumnName.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root> </root>

View File

@ -96,6 +96,15 @@ namespace Eugen.ESystem.Windows.Forms.Properties {
} }
} }
/// <summary>
/// Sucht eine lokalisierte Zeichenfolge, die Information ähnelt.
/// </summary>
internal static string msgBoxCapt003 {
get {
return ResourceManager.GetString("msgBoxCapt003", resourceCulture);
}
}
/// <summary> /// <summary>
/// Sucht eine lokalisierte Zeichenfolge, die File not found! ähnelt. /// Sucht eine lokalisierte Zeichenfolge, die File not found! ähnelt.
/// </summary> /// </summary>
@ -104,5 +113,14 @@ namespace Eugen.ESystem.Windows.Forms.Properties {
return ResourceManager.GetString("msgBoxTxt001", resourceCulture); return ResourceManager.GetString("msgBoxTxt001", resourceCulture);
} }
} }
/// <summary>
/// Sucht eine lokalisierte Zeichenfolge, die The file was saved successfully. ähnelt.
/// </summary>
internal static string msgBoxTxt003 {
get {
return ResourceManager.GetString("msgBoxTxt003", resourceCulture);
}
}
} }
} }

View File

@ -129,7 +129,13 @@
<data name="msgBoxCapt001" xml:space="preserve"> <data name="msgBoxCapt001" xml:space="preserve">
<value>Fehler</value> <value>Fehler</value>
</data> </data>
<data name="msgBoxCapt003" xml:space="preserve">
<value>Information</value>
</data>
<data name="msgBoxTxt001" xml:space="preserve"> <data name="msgBoxTxt001" xml:space="preserve">
<value>Datei wurde nicht gefunden!</value> <value>Datei wurde nicht gefunden!</value>
</data> </data>
<data name="msgBoxTxt003" xml:space="preserve">
<value>Die Datei wurde erfolgreich gespeichert.</value>
</data>
</root> </root>

View File

@ -129,7 +129,13 @@
<data name="msgBoxCapt001" xml:space="preserve"> <data name="msgBoxCapt001" xml:space="preserve">
<value>Error</value> <value>Error</value>
</data> </data>
<data name="msgBoxCapt003" xml:space="preserve">
<value>Information</value>
</data>
<data name="msgBoxTxt001" xml:space="preserve"> <data name="msgBoxTxt001" xml:space="preserve">
<value>File not found!</value> <value>File not found!</value>
</data> </data>
<data name="msgBoxTxt003" xml:space="preserve">
<value>The file was saved successfully.</value>
</data>
</root> </root>

View File

@ -129,7 +129,13 @@
<data name="msgBoxCapt001" xml:space="preserve"> <data name="msgBoxCapt001" xml:space="preserve">
<value>Error</value> <value>Error</value>
</data> </data>
<data name="msgBoxCapt003" xml:space="preserve">
<value>Information</value>
</data>
<data name="msgBoxTxt001" xml:space="preserve"> <data name="msgBoxTxt001" xml:space="preserve">
<value>File not found!</value> <value>File not found!</value>
</data> </data>
<data name="msgBoxTxt003" xml:space="preserve">
<value>The file was saved successfully.</value>
</data>
</root> </root>

View File

@ -3,8 +3,10 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms;
using System.Xml; using System.Xml;
using System.Xml.Linq; using System.Xml.Linq;
using AppRes = Eugen.ESystem.Windows.Forms.Properties.AppResources;
namespace Eugen.ESystem.Windows.Forms namespace Eugen.ESystem.Windows.Forms
@ -38,6 +40,8 @@ namespace Eugen.ESystem.Windows.Forms
} }
rootElement.Save(FileName); rootElement.Save(FileName);
MessageBox.Show(AppRes.msgBoxTxt003, AppRes.msgBoxCapt003, MessageBoxButtons.OK, MessageBoxIcon.Information);
} }
} }
} }

View File

@ -1,20 +1,21 @@
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\hedvalcon.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\hedvalcon.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\en\hedvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\de\hedvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\hecryption.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\hecryption.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\DuoValueControl.csproj.AssemblyReference.cache H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\DuoValueControl.csproj.AssemblyReference.cache
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.Properties.AppResources.resources H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.Properties.AppResources.resources
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.Properties.Resources.resources H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.Properties.Resources.resources
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.DuoValueControl.resources H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.DuoValueControl.resources
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.DuoValueControl.en.resources
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.Properties.AppResources.de.resources H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.Properties.AppResources.de.resources
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.Properties.AppResources.en.resources H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.Properties.AppResources.en.resources
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.DuoValueControl.de.resources H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\Eugen.ESystem.Windows.Forms.DuoValueControl.de.resources
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\DuoValueControl.csproj.GenerateResource.cache H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\DuoValueControl.csproj.GenerateResource.cache
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\DuoValueControl.csproj.CoreCompileInputs.cache H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\DuoValueControl.csproj.CoreCompileInputs.cache
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\hedvalcon.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\hedvalcon.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\de\hedvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\en\hedvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\hecryption.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\bin\Debug\hecryption.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\de\hedvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\en\hedvalcon.resources.dll H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\en\hedvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\de\hedvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\DuoValueControl.csproj.CopyComplete H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\DuoValueControl.csproj.CopyComplete
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\hedvalcon.dll H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\hedvalcon.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\hedvalcon.pdb H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\DuoValueControl\obj\Debug\hedvalcon.pdb

View File

@ -80,12 +80,12 @@
// duoValueControl // duoValueControl
// //
this.duoValueControl.AlwaysEncrypted = false; this.duoValueControl.AlwaysEncrypted = false;
this.duoValueControl.CheckBoxEncryptValueText = "Encrypt\r\nvalues"; this.duoValueControl.CheckBoxEncryptValueText = "Encrypt";
this.duoValueControl.Group = null; this.duoValueControl.Group = null;
this.duoValueControl.GroupName = "Group"; this.duoValueControl.GroupName = "Group";
this.duoValueControl.InitialDirectory = "C:\\\\"; this.duoValueControl.InitialDirectory = "C:\\";
this.duoValueControl.Key = null; this.duoValueControl.Key = null;
this.duoValueControl.Location = new System.Drawing.Point(12, 12); this.duoValueControl.Location = new System.Drawing.Point(13, 13);
this.duoValueControl.MaximumSize = new System.Drawing.Size(800, 227); this.duoValueControl.MaximumSize = new System.Drawing.Size(800, 227);
this.duoValueControl.MinimumSize = new System.Drawing.Size(316, 227); this.duoValueControl.MinimumSize = new System.Drawing.Size(316, 227);
this.duoValueControl.Name = "duoValueControl"; this.duoValueControl.Name = "duoValueControl";
@ -107,7 +107,7 @@
this.Controls.Add(this.groupBoxProgramInfo); this.Controls.Add(this.groupBoxProgramInfo);
this.Controls.Add(this.groupBoxDLLInfo); this.Controls.Add(this.groupBoxDLLInfo);
this.Name = "Form1"; this.Name = "Form1";
this.Text = "Test_InfoBox"; this.Text = "Test_DuoValueControl";
this.Load += new System.EventHandler(this.Form1_Load); this.Load += new System.EventHandler(this.Form1_Load);
this.groupBoxProgramInfo.ResumeLayout(false); this.groupBoxProgramInfo.ResumeLayout(false);
this.groupBoxProgramInfo.PerformLayout(); this.groupBoxProgramInfo.PerformLayout();

View File

@ -123,14 +123,13 @@ namespace HE_Test_Dll1
{ {
duoValueControl.Password = "Test"; duoValueControl.Password = "Test";
duoValueControl.InitialDirectory = @"C:\Temp\Test"; duoValueControl.InitialDirectory = @"C:\Temp\Test";
duoValueControl.XMLfileName = @"H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\Daten\Test1.xml"; duoValueControl.XMLfileName = @"C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\Daten\Test1.xml";
duoValueControl.ValueControlName = "My XML Control"; duoValueControl.ValueControlName = "My XML Control";
duoValueControl.Topic = "NX-Portal"; duoValueControl.Topic = "NX-Portal";
duoValueControl.GroupName = "MyGroup"; duoValueControl.GroupName = "MyGroup";
//duoValueControl.Group = "NX_2212"; //Belegt die Gruppe vor. Darf kein Leerzeichen enthalten //duoValueControl.Group = "NX_2212"; //Belegt die Gruppe vor. Darf kein Leerzeichen enthalten
duoValueControl.TableKeyName = "MyVarName"; duoValueControl.TableKeyName = "MyVarName";
duoValueControl.TableValueName = "MyValue"; duoValueControl.TableValueName = "MyValue";
duoValueControl.CheckBoxEncryptValueText = "Encrypt\r\nvalues";
//duoValueControl.AlwaysEncrypted = true; //Alle Werte werden immer Verschlüsselt //duoValueControl.AlwaysEncrypted = true; //Alle Werte werden immer Verschlüsselt
duoValueControl.SetDialogWidth(600); //Der Dialog kann zwischen 316 und 800 breit sein duoValueControl.SetDialogWidth(600); //Der Dialog kann zwischen 316 und 800 breit sein
duoValueControl.SetBasicValues(); //Die übergebenen Werte anzeigen duoValueControl.SetBasicValues(); //Die übergebenen Werte anzeigen

View File

@ -40,8 +40,7 @@
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\_DLL\Cryption.git\Cryption\bin\Debug\hecryption.dll</HintPath> <HintPath>..\..\..\_DLL\Cryption.git\Cryption\bin\Debug\hecryption.dll</HintPath>
</Reference> </Reference>
<Reference Include="hedvalcon, Version=1.0.8335.17566, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="hedvalcon">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\DuoValueControl\bin\Debug\hedvalcon.dll</HintPath> <HintPath>..\DuoValueControl\bin\Debug\hedvalcon.dll</HintPath>
</Reference> </Reference>
<Reference Include="System" /> <Reference Include="System" />

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
ca9756681d5a726e98ace337110d2b01840337ae e2edf1f31238abccda0a42fc7b94eacf16bd59d1

View File

@ -1,18 +1,35 @@
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.exe.config
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.exe
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hecryption.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hedvalcon.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hecryption.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hedvalcon.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\de\hedvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\en\hedvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.AssemblyReference.cache H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.AssemblyReference.cache
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.SuggestedBindingRedirects.cache H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.SuggestedBindingRedirects.cache
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE_Test_Dll1.Form1.resources H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE_Test_Dll1.Form1.resources
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE_Test_Dll1.Properties.Resources.resources H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE_Test_Dll1.Properties.Resources.resources
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.GenerateResource.cache H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.GenerateResource.cache
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.CoreCompileInputs.cache H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.CoreCompileInputs.cache
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.CopyComplete
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_Dll.exe H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_Dll.exe
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_Dll.pdb H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_Dll.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.exe.config C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.exe.config
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.exe C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.exe
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.pdb C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hecryption.dll C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hecryption.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hedvalcon.dll C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hedvalcon.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hedvalcon.pdb C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hecryption.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hecryption.pdb C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\hedvalcon.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\de\hedvalcon.resources.dll C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\de\hedvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\en\hedvalcon.resources.dll C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\bin\Debug\en\hedvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.CopyComplete C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.AssemblyReference.cache
C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE_Test_Dll1.Form1.resources
C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE_Test_Dll1.Properties.Resources.resources
C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.GenerateResource.cache
C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.CoreCompileInputs.cache
C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_DuoValueControl.csproj.CopyComplete
C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_Dll.exe
C:\CAD\Git-WorkRepository\VisualStudio\_USER CONTROL\DuoValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_Dll.pdb

View File

@ -1 +0,0 @@
4283c068b5d28fef85faed753be2aea3c5ae85fd

View File

@ -1,18 +0,0 @@
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_SingleValueControl.csproj.AssemblyReference.cache
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_SingleValueControl.csproj.SuggestedBindingRedirects.cache
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\obj\Debug\HE_Test_Dll1.Form1.resources
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\obj\Debug\HE_Test_Dll1.Properties.Resources.resources
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_SingleValueControl.csproj.GenerateResource.cache
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_SingleValueControl.csproj.CoreCompileInputs.cache
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.exe.config
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.exe
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\bin\Debug\HE-Test_Dll.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\bin\Debug\hecryption.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\bin\Debug\hecryption.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_SingleValueControl.csproj.CopyComplete
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_Dll.exe
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\obj\Debug\HE-Test_Dll.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\bin\Debug\hesvalcon.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\bin\Debug\hesvalcon.pdb
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\bin\Debug\de\hesvalcon.resources.dll
H:\Programmieren\Git-WorkRepository\VisualStudio\_USER CONTROL\SingleValueControl.git\HE-Test_Dll\bin\Debug\en\hesvalcon.resources.dll