You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

252 lines
13 KiB
C#

namespace Serial_Observer
{
partial class Form1
{
/// <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()
{
this.listBox_portLogs = new System.Windows.Forms.ListBox();
this.comboBox_portName = new System.Windows.Forms.ComboBox();
this.comboBox_portSpeed = new System.Windows.Forms.ComboBox();
this.comboBox_portParity = new System.Windows.Forms.ComboBox();
this.comboBox_portData = new System.Windows.Forms.ComboBox();
this.comboBox_portStop = new System.Windows.Forms.ComboBox();
this.button_portConnect = new System.Windows.Forms.Button();
this.button_portDisconnect = new System.Windows.Forms.Button();
this.button_portSend = new System.Windows.Forms.Button();
this.textBox_textToSend = new System.Windows.Forms.TextBox();
this.checkBox_HexEntering = new System.Windows.Forms.CheckBox();
this.label_comboBoxNamePort = new System.Windows.Forms.Label();
this.label_comboBoxSpeedPort = new System.Windows.Forms.Label();
this.label_comboBoxDataPort = new System.Windows.Forms.Label();
this.label_comboBoxParityPort = new System.Windows.Forms.Label();
this.label_comboBoxStopPort = new System.Windows.Forms.Label();
this.button_setupForm = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// listBox_portLogs
//
this.listBox_portLogs.FormattingEnabled = true;
this.listBox_portLogs.Location = new System.Drawing.Point(12, 52);
this.listBox_portLogs.Name = "listBox_portLogs";
this.listBox_portLogs.Size = new System.Drawing.Size(629, 147);
this.listBox_portLogs.TabIndex = 0;
//
// comboBox_portName
//
this.comboBox_portName.FormattingEnabled = true;
this.comboBox_portName.Location = new System.Drawing.Point(12, 25);
this.comboBox_portName.Name = "comboBox_portName";
this.comboBox_portName.Size = new System.Drawing.Size(121, 21);
this.comboBox_portName.TabIndex = 1;
//
// comboBox_portSpeed
//
this.comboBox_portSpeed.FormattingEnabled = true;
this.comboBox_portSpeed.Location = new System.Drawing.Point(139, 25);
this.comboBox_portSpeed.Name = "comboBox_portSpeed";
this.comboBox_portSpeed.Size = new System.Drawing.Size(121, 21);
this.comboBox_portSpeed.TabIndex = 2;
//
// comboBox_portParity
//
this.comboBox_portParity.FormattingEnabled = true;
this.comboBox_portParity.Location = new System.Drawing.Point(393, 25);
this.comboBox_portParity.Name = "comboBox_portParity";
this.comboBox_portParity.Size = new System.Drawing.Size(121, 21);
this.comboBox_portParity.TabIndex = 3;
//
// comboBox_portData
//
this.comboBox_portData.FormattingEnabled = true;
this.comboBox_portData.Location = new System.Drawing.Point(266, 25);
this.comboBox_portData.Name = "comboBox_portData";
this.comboBox_portData.Size = new System.Drawing.Size(121, 21);
this.comboBox_portData.TabIndex = 4;
//
// comboBox_portStop
//
this.comboBox_portStop.FormattingEnabled = true;
this.comboBox_portStop.Location = new System.Drawing.Point(520, 25);
this.comboBox_portStop.Name = "comboBox_portStop";
this.comboBox_portStop.Size = new System.Drawing.Size(121, 21);
this.comboBox_portStop.TabIndex = 5;
//
// button_portConnect
//
this.button_portConnect.Location = new System.Drawing.Point(12, 232);
this.button_portConnect.Name = "button_portConnect";
this.button_portConnect.Size = new System.Drawing.Size(109, 23);
this.button_portConnect.TabIndex = 6;
this.button_portConnect.Text = "Connecter";
this.button_portConnect.UseVisualStyleBackColor = true;
this.button_portConnect.Click += new System.EventHandler(this.button_portConnect_Click);
//
// button_portDisconnect
//
this.button_portDisconnect.Location = new System.Drawing.Point(127, 232);
this.button_portDisconnect.Name = "button_portDisconnect";
this.button_portDisconnect.Size = new System.Drawing.Size(133, 23);
this.button_portDisconnect.TabIndex = 7;
this.button_portDisconnect.Text = "Déconnecter";
this.button_portDisconnect.UseVisualStyleBackColor = true;
this.button_portDisconnect.Click += new System.EventHandler(this.button_portDisconnect_Click);
//
// button_portSend
//
this.button_portSend.Location = new System.Drawing.Point(266, 232);
this.button_portSend.Name = "button_portSend";
this.button_portSend.Size = new System.Drawing.Size(187, 23);
this.button_portSend.TabIndex = 8;
this.button_portSend.Text = "Envoyer";
this.button_portSend.UseVisualStyleBackColor = true;
this.button_portSend.Click += new System.EventHandler(this.button_portSend_Click);
//
// textBox_textToSend
//
this.textBox_textToSend.Location = new System.Drawing.Point(13, 206);
this.textBox_textToSend.Name = "textBox_textToSend";
this.textBox_textToSend.Size = new System.Drawing.Size(628, 20);
this.textBox_textToSend.TabIndex = 9;
//
// checkBox_HexEntering
//
this.checkBox_HexEntering.AutoSize = true;
this.checkBox_HexEntering.Location = new System.Drawing.Point(13, 261);
this.checkBox_HexEntering.Name = "checkBox_HexEntering";
this.checkBox_HexEntering.Size = new System.Drawing.Size(156, 17);
this.checkBox_HexEntering.TabIndex = 10;
this.checkBox_HexEntering.Text = "Mode d\'entrée hexadécimal";
this.checkBox_HexEntering.UseVisualStyleBackColor = true;
this.checkBox_HexEntering.CheckedChanged += new System.EventHandler(this.checkBox_HexEntering_CheckedChanged);
//
// label_comboBoxNamePort
//
this.label_comboBoxNamePort.AutoSize = true;
this.label_comboBoxNamePort.Location = new System.Drawing.Point(47, 9);
this.label_comboBoxNamePort.Name = "label_comboBoxNamePort";
this.label_comboBoxNamePort.Size = new System.Drawing.Size(53, 13);
this.label_comboBoxNamePort.TabIndex = 11;
this.label_comboBoxNamePort.Text = "Port COM";
//
// label_comboBoxSpeedPort
//
this.label_comboBoxSpeedPort.AutoSize = true;
this.label_comboBoxSpeedPort.Location = new System.Drawing.Point(160, 9);
this.label_comboBoxSpeedPort.Name = "label_comboBoxSpeedPort";
this.label_comboBoxSpeedPort.Size = new System.Drawing.Size(77, 13);
this.label_comboBoxSpeedPort.TabIndex = 12;
this.label_comboBoxSpeedPort.Text = "Vitesse du port";
//
// label_comboBoxDataPort
//
this.label_comboBoxDataPort.AutoSize = true;
this.label_comboBoxDataPort.Location = new System.Drawing.Point(275, 9);
this.label_comboBoxDataPort.Name = "label_comboBoxDataPort";
this.label_comboBoxDataPort.Size = new System.Drawing.Size(103, 13);
this.label_comboBoxDataPort.TabIndex = 13;
this.label_comboBoxDataPort.Text = "Nombre de données";
//
// label_comboBoxParityPort
//
this.label_comboBoxParityPort.AutoSize = true;
this.label_comboBoxParityPort.Location = new System.Drawing.Point(435, 9);
this.label_comboBoxParityPort.Name = "label_comboBoxParityPort";
this.label_comboBoxParityPort.Size = new System.Drawing.Size(34, 13);
this.label_comboBoxParityPort.TabIndex = 14;
this.label_comboBoxParityPort.Text = "Parité";
//
// label_comboBoxStopPort
//
this.label_comboBoxStopPort.AutoSize = true;
this.label_comboBoxStopPort.Location = new System.Drawing.Point(539, 9);
this.label_comboBoxStopPort.Name = "label_comboBoxStopPort";
this.label_comboBoxStopPort.Size = new System.Drawing.Size(82, 13);
this.label_comboBoxStopPort.TabIndex = 15;
this.label_comboBoxStopPort.Text = "Nombre de stop";
//
// button_setupForm
//
this.button_setupForm.Location = new System.Drawing.Point(459, 232);
this.button_setupForm.Name = "button_setupForm";
this.button_setupForm.Size = new System.Drawing.Size(182, 23);
this.button_setupForm.TabIndex = 16;
this.button_setupForm.Text = "Paramètres supplémentaires";
this.button_setupForm.UseVisualStyleBackColor = true;
this.button_setupForm.Click += new System.EventHandler(this.button_setupForm_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.button_setupForm);
this.Controls.Add(this.label_comboBoxStopPort);
this.Controls.Add(this.label_comboBoxParityPort);
this.Controls.Add(this.label_comboBoxDataPort);
this.Controls.Add(this.label_comboBoxSpeedPort);
this.Controls.Add(this.label_comboBoxNamePort);
this.Controls.Add(this.checkBox_HexEntering);
this.Controls.Add(this.textBox_textToSend);
this.Controls.Add(this.button_portSend);
this.Controls.Add(this.button_portDisconnect);
this.Controls.Add(this.button_portConnect);
this.Controls.Add(this.comboBox_portStop);
this.Controls.Add(this.comboBox_portData);
this.Controls.Add(this.comboBox_portParity);
this.Controls.Add(this.comboBox_portSpeed);
this.Controls.Add(this.comboBox_portName);
this.Controls.Add(this.listBox_portLogs);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox listBox_portLogs;
private System.Windows.Forms.ComboBox comboBox_portName;
private System.Windows.Forms.ComboBox comboBox_portSpeed;
private System.Windows.Forms.ComboBox comboBox_portParity;
private System.Windows.Forms.ComboBox comboBox_portData;
private System.Windows.Forms.ComboBox comboBox_portStop;
private System.Windows.Forms.Button button_portConnect;
private System.Windows.Forms.Button button_portDisconnect;
private System.Windows.Forms.Button button_portSend;
private System.Windows.Forms.TextBox textBox_textToSend;
private System.Windows.Forms.CheckBox checkBox_HexEntering;
private System.Windows.Forms.Label label_comboBoxNamePort;
private System.Windows.Forms.Label label_comboBoxSpeedPort;
private System.Windows.Forms.Label label_comboBoxDataPort;
private System.Windows.Forms.Label label_comboBoxParityPort;
private System.Windows.Forms.Label label_comboBoxStopPort;
private System.Windows.Forms.Button button_setupForm;
}
}