Files
2016-12-18 14:52:28 +01:00

98 lines
3.8 KiB
C#

namespace SignatureManager
{
partial class SettingsForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.cklist_accounts = new System.Windows.Forms.CheckedListBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.but_save = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// cklist_accounts
//
this.cklist_accounts.FormattingEnabled = true;
this.cklist_accounts.Location = new System.Drawing.Point(12, 53);
this.cklist_accounts.Name = "cklist_accounts";
this.cklist_accounts.Size = new System.Drawing.Size(250, 259);
this.cklist_accounts.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(256, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Check which mailboxes should use digital signatures.";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 27);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(150, 13);
this.label2.TabIndex = 2;
this.label2.Text = "(certificates have to be set up)";
//
// but_save
//
this.but_save.Location = new System.Drawing.Point(171, 318);
this.but_save.Name = "but_save";
this.but_save.Size = new System.Drawing.Size(91, 23);
this.but_save.TabIndex = 3;
this.but_save.Text = "Save";
this.but_save.UseVisualStyleBackColor = true;
this.but_save.Click += new System.EventHandler(this.but_save_Click);
//
// SettingsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(273, 350);
this.Controls.Add(this.but_save);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.cklist_accounts);
this.Name = "SettingsForm";
this.Text = "SettingsForm";
this.Load += new System.EventHandler(this.SettingsForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckedListBox cklist_accounts;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button but_save;
}
}