2023-12-21 00:42:08 +01:00

102 lines
4.1 KiB
C#

namespace PDFWorkflowManager
{
partial class LanguagesForm
{
/// <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()
{
// Remove control box
this.ControlBox = false;
this.checkedListBoxLanguages = new System.Windows.Forms.CheckedListBox();
this.txtLanguageSelection = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.btnClear = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// checkedListBoxLanguages
//
this.checkedListBoxLanguages.CheckOnClick = true;
this.checkedListBoxLanguages.FormattingEnabled = true;
this.checkedListBoxLanguages.Location = new System.Drawing.Point(12, 63);
this.checkedListBoxLanguages.Name = "checkedListBoxLanguages";
this.checkedListBoxLanguages.Size = new System.Drawing.Size(187, 304);
this.checkedListBoxLanguages.TabIndex = 0;
this.checkedListBoxLanguages.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBoxLanguages_ItemCheck);
//
// txtLanguageSelection
//
this.txtLanguageSelection.Location = new System.Drawing.Point(12, 9);
this.txtLanguageSelection.Name = "txtLanguageSelection";
this.txtLanguageSelection.Size = new System.Drawing.Size(187, 20);
this.txtLanguageSelection.TabIndex = 1;
//
// button1
//
this.button1.Location = new System.Drawing.Point(124, 35);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 2;
this.button1.Text = "Accept";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// btnClear
//
this.btnClear.Location = new System.Drawing.Point(12, 35);
this.btnClear.Name = "btnClear";
this.btnClear.Size = new System.Drawing.Size(75, 23);
this.btnClear.TabIndex = 3;
this.btnClear.Text = "Clear";
this.btnClear.UseVisualStyleBackColor = true;
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
//
// LanguagesForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(208, 375);
this.Controls.Add(this.btnClear);
this.Controls.Add(this.button1);
this.Controls.Add(this.txtLanguageSelection);
this.Controls.Add(this.checkedListBoxLanguages);
this.Name = "LanguagesForm";
this.Text = "Select Languages";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckedListBox checkedListBoxLanguages;
private System.Windows.Forms.TextBox txtLanguageSelection;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button btnClear;
}
}