Position und Größe

- Position und Größe der CheckBox 'Encryptet' korrigiert
This commit is contained in:
Eugen Höglinger 2023-04-27 16:23:54 +02:00
parent e180f149c6
commit e8bb99de08
27 changed files with 7 additions and 2 deletions

Binary file not shown.

View File

@ -122,6 +122,8 @@
//
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.panel1.AutoSize = true;
this.panel1.BackColor = System.Drawing.SystemColors.Control;
this.panel1.Controls.Add(this.checkBoxEncryptValues);
this.panel1.Location = new System.Drawing.Point(235, 130);
this.panel1.Name = "panel1";
@ -130,8 +132,8 @@
//
// checkBoxEncryptValues
//
this.checkBoxEncryptValues.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.checkBoxEncryptValues.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.checkBoxEncryptValues.AutoSize = true;
this.checkBoxEncryptValues.Location = new System.Drawing.Point(0, 22);
this.checkBoxEncryptValues.Name = "checkBoxEncryptValues";
this.checkBoxEncryptValues.Size = new System.Drawing.Size(62, 17);
@ -238,7 +240,9 @@
this.Name = "DuoMultiValueControl";
this.Size = new System.Drawing.Size(316, 227);
this.groupBoxValueControl.ResumeLayout(false);
this.groupBoxValueControl.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewValues)).EndInit();
this.ResumeLayout(false);

View File

@ -136,6 +136,7 @@ namespace HE_Test_Dll1
//duoMultiValueControl.Group2 = "CAD"; //Belegt die Gruppe vor. Darf kein Leerzeichen enthalten
duoMultiValueControl.TableKeyName = "MyVarName";
duoMultiValueControl.TableValueName = "MyValue";
duoMultiValueControl.CheckBoxEncryptValueText = "Kodiert";
//duoMultiValueControl.AlwaysEncrypted = true; //Alle Werte werden immer Verschlüsselt
//duoMultiValueControl.NeverEncrypted = true; //Alle Werte werden nie Verschlüsselt
duoMultiValueControl.SetDialogWidth(600); //Der Dialog kann zwischen 316 und 800 breit sein

Binary file not shown.

Binary file not shown.