namespace UI_WinForms.Components { sealed partial class Translation { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.tableLayout = new System.Windows.Forms.TableLayoutPanel(); this.labelHead = new System.Windows.Forms.Label(); this.textBox = new System.Windows.Forms.TextBox(); this.flowLayoutHeaderTools = new System.Windows.Forms.FlowLayoutPanel(); this.buttonDeepL = new System.Windows.Forms.Button(); this.checkBoxManual = new System.Windows.Forms.CheckBox(); this.toolTip = new System.Windows.Forms.ToolTip(this.components); this.tableLayout.SuspendLayout(); this.flowLayoutHeaderTools.SuspendLayout(); this.SuspendLayout(); // // tableLayout // this.tableLayout.ColumnCount = 2; this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 366F)); this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayout.Controls.Add(this.labelHead, 0, 0); this.tableLayout.Controls.Add(this.textBox, 0, 1); this.tableLayout.Controls.Add(this.flowLayoutHeaderTools, 1, 0); this.tableLayout.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayout.Location = new System.Drawing.Point(0, 0); this.tableLayout.Name = "tableLayout"; this.tableLayout.RowCount = 2; this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 66F)); this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayout.Size = new System.Drawing.Size(820, 279); this.tableLayout.TabIndex = 0; // // labelHead // this.labelHead.Dock = System.Windows.Forms.DockStyle.Fill; this.labelHead.Location = new System.Drawing.Point(3, 0); this.labelHead.Name = "labelHead"; this.labelHead.Size = new System.Drawing.Size(360, 66); this.labelHead.TabIndex = 0; this.labelHead.Text = "header"; this.labelHead.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // textBox // this.tableLayout.SetColumnSpan(this.textBox, 2); this.textBox.Dock = System.Windows.Forms.DockStyle.Fill; this.textBox.Location = new System.Drawing.Point(3, 69); this.textBox.Multiline = true; this.textBox.Name = "textBox"; this.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBox.Size = new System.Drawing.Size(814, 207); this.textBox.TabIndex = 1; this.textBox.TextChanged += new System.EventHandler(this.textBox_TextChanged); // // flowLayoutHeaderTools // this.flowLayoutHeaderTools.Controls.Add(this.buttonDeepL); this.flowLayoutHeaderTools.Controls.Add(this.checkBoxManual); this.flowLayoutHeaderTools.Dock = System.Windows.Forms.DockStyle.Fill; this.flowLayoutHeaderTools.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft; this.flowLayoutHeaderTools.Location = new System.Drawing.Point(366, 0); this.flowLayoutHeaderTools.Margin = new System.Windows.Forms.Padding(0); this.flowLayoutHeaderTools.Name = "flowLayoutHeaderTools"; this.flowLayoutHeaderTools.Size = new System.Drawing.Size(454, 66); this.flowLayoutHeaderTools.TabIndex = 3; // // buttonDeepL // this.buttonDeepL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.buttonDeepL.AutoSize = true; this.buttonDeepL.FlatAppearance.BorderSize = 0; this.buttonDeepL.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonDeepL.Image = global::UI_WinForms.Resources.Icons.icons8_bot_512; this.buttonDeepL.Location = new System.Drawing.Point(391, 3); this.buttonDeepL.Name = "buttonDeepL"; this.buttonDeepL.Size = new System.Drawing.Size(60, 60); this.buttonDeepL.TabIndex = 2; this.toolTip.SetToolTip(this.buttonDeepL, "Auto-generate this text by using DeepL sourced by the source culture."); this.buttonDeepL.UseVisualStyleBackColor = true; this.buttonDeepL.Click += new System.EventHandler(this.buttonDeepL_Click); // // checkBoxManual // this.checkBoxManual.AutoSize = true; this.checkBoxManual.Location = new System.Drawing.Point(188, 3); this.checkBoxManual.Name = "checkBoxManual"; this.checkBoxManual.Padding = new System.Windows.Forms.Padding(0, 14, 0, 14); this.checkBoxManual.Size = new System.Drawing.Size(197, 60); this.checkBoxManual.TabIndex = 0; this.checkBoxManual.Text = "Manual translation"; this.toolTip.SetToolTip(this.checkBoxManual, "Never overwrites this translation automatically"); this.checkBoxManual.UseVisualStyleBackColor = true; this.checkBoxManual.CheckedChanged += new System.EventHandler(this.checkBoxManual_CheckedChanged); // // toolTip // this.toolTip.AutoPopDelay = 30000; this.toolTip.InitialDelay = 500; this.toolTip.ReshowDelay = 100; this.toolTip.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info; this.toolTip.ToolTipTitle = "Help"; // // Translation // this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.Controls.Add(this.tableLayout); this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); this.Name = "Translation"; this.Size = new System.Drawing.Size(820, 279); this.tableLayout.ResumeLayout(false); this.tableLayout.PerformLayout(); this.flowLayoutHeaderTools.ResumeLayout(false); this.flowLayoutHeaderTools.PerformLayout(); this.ResumeLayout(false); } #endregion private TableLayoutPanel tableLayout; private Label labelHead; private TextBox textBox; private Button buttonDeepL; private ToolTip toolTip; private FlowLayoutPanel flowLayoutHeaderTools; private CheckBox checkBoxManual; } }