SpectacleTransformer/MainForm.Designer.cs

156 lines
8.1 KiB
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace SpectacleTransformer {
partial class MainForm {
/// <summary>
/// Variable nécessaire au concepteur.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Nettoyage des ressources utilisées.
/// </summary>
/// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
protected override void Dispose(bool disposing) {
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Code généré par le Concepteur Windows Form
/// <summary>
/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
/// le contenu de cette méthode avec l'éditeur de code.
/// </summary>
private void InitializeComponent() {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.subTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.translateButton = new System.Windows.Forms.Button();
this.clearButton = new System.Windows.Forms.Button();
this.sourceLanguagePicker = new System.Windows.Forms.ComboBox();
this.destinationLanguagePicker = new System.Windows.Forms.ComboBox();
this.destinationTextBox = new System.Windows.Forms.TextBox();
this.sourceTextBox = new System.Windows.Forms.TextBox();
this.mainTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.instanceUrlLabel = new System.Windows.Forms.Label();
this.instanceUrlPicker = new System.Windows.Forms.ComboBox();
this.translator = new System.ComponentModel.BackgroundWorker();
this.subTableLayoutPanel.SuspendLayout();
this.mainTableLayoutPanel.SuspendLayout();
this.SuspendLayout();
//
// subTableLayoutPanel
//
resources.ApplyResources(this.subTableLayoutPanel, "subTableLayoutPanel");
this.mainTableLayoutPanel.SetColumnSpan(this.subTableLayoutPanel, 2);
this.subTableLayoutPanel.Controls.Add(this.translateButton, 0, 2);
this.subTableLayoutPanel.Controls.Add(this.clearButton, 1, 2);
this.subTableLayoutPanel.Controls.Add(this.sourceLanguagePicker, 0, 0);
this.subTableLayoutPanel.Controls.Add(this.destinationLanguagePicker, 1, 0);
this.subTableLayoutPanel.Controls.Add(this.destinationTextBox, 1, 1);
this.subTableLayoutPanel.Controls.Add(this.sourceTextBox, 0, 1);
this.subTableLayoutPanel.Name = "subTableLayoutPanel";
//
// translateButton
//
resources.ApplyResources(this.translateButton, "translateButton");
this.translateButton.Name = "translateButton";
this.translateButton.UseVisualStyleBackColor = true;
this.translateButton.Click += new System.EventHandler(this.translateButton_Click);
//
// clearButton
//
resources.ApplyResources(this.clearButton, "clearButton");
this.clearButton.Name = "clearButton";
this.clearButton.UseVisualStyleBackColor = true;
this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
//
// sourceLanguagePicker
//
resources.ApplyResources(this.sourceLanguagePicker, "sourceLanguagePicker");
this.sourceLanguagePicker.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.sourceLanguagePicker.FormattingEnabled = true;
this.sourceLanguagePicker.Name = "sourceLanguagePicker";
this.sourceLanguagePicker.TextChanged += new System.EventHandler(this.sourceLanguagePicker_TextChanged);
//
// destinationLanguagePicker
//
resources.ApplyResources(this.destinationLanguagePicker, "destinationLanguagePicker");
this.destinationLanguagePicker.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.destinationLanguagePicker.FormattingEnabled = true;
this.destinationLanguagePicker.Name = "destinationLanguagePicker";
this.destinationLanguagePicker.TextChanged += new System.EventHandler(this.destinationLanguagePicker_TextChanged);
//
// destinationTextBox
//
resources.ApplyResources(this.destinationTextBox, "destinationTextBox");
this.destinationTextBox.Name = "destinationTextBox";
this.destinationTextBox.ReadOnly = true;
//
// sourceTextBox
//
resources.ApplyResources(this.sourceTextBox, "sourceTextBox");
this.sourceTextBox.Name = "sourceTextBox";
this.sourceTextBox.TextChanged += new System.EventHandler(this.sourceTextBox_TextChanged);
//
// mainTableLayoutPanel
//
resources.ApplyResources(this.mainTableLayoutPanel, "mainTableLayoutPanel");
this.mainTableLayoutPanel.Controls.Add(this.instanceUrlLabel, 0, 0);
this.mainTableLayoutPanel.Controls.Add(this.subTableLayoutPanel, 0, 1);
this.mainTableLayoutPanel.Controls.Add(this.instanceUrlPicker, 1, 0);
this.mainTableLayoutPanel.Name = "mainTableLayoutPanel";
//
// instanceUrlLabel
//
resources.ApplyResources(this.instanceUrlLabel, "instanceUrlLabel");
this.instanceUrlLabel.Name = "instanceUrlLabel";
//
// instanceUrlPicker
//
this.instanceUrlPicker.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.instanceUrlPicker.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
resources.ApplyResources(this.instanceUrlPicker, "instanceUrlPicker");
this.instanceUrlPicker.FormattingEnabled = true;
this.instanceUrlPicker.Name = "instanceUrlPicker";
this.instanceUrlPicker.TextChanged += new System.EventHandler(this.instanceUrlPicker_TextChanged);
//
// translator
//
this.translator.DoWork += new System.ComponentModel.DoWorkEventHandler(this.translator_DoWork);
this.translator.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.translator_RunWorkerCompleted);
//
// MainForm
//
this.AcceptButton = this.translateButton;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.mainTableLayoutPanel);
this.Name = "MainForm";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
this.Load += new System.EventHandler(this.MainForm_Load);
this.subTableLayoutPanel.ResumeLayout(false);
this.subTableLayoutPanel.PerformLayout();
this.mainTableLayoutPanel.ResumeLayout(false);
this.mainTableLayoutPanel.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel subTableLayoutPanel;
private System.Windows.Forms.TableLayoutPanel mainTableLayoutPanel;
private System.Windows.Forms.Label instanceUrlLabel;
private System.Windows.Forms.ComboBox instanceUrlPicker;
private System.Windows.Forms.Button translateButton;
private System.Windows.Forms.Button clearButton;
private System.Windows.Forms.TextBox sourceTextBox;
private System.Windows.Forms.ComboBox sourceLanguagePicker;
private System.Windows.Forms.ComboBox destinationLanguagePicker;
private System.Windows.Forms.TextBox destinationTextBox;
private System.ComponentModel.BackgroundWorker translator;
}
}