ExamCryptoJanvier/crypto/Form1.Designer-DESKTOP-M2KT...

172 lines
6.8 KiB
C#
Raw 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.

using System.Drawing;
namespace crypto
{
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.ftb_origine = new System.Windows.Forms.TextBox();
this.ftb_traiter = new System.Windows.Forms.TextBox();
this.ftb_clef = new System.Windows.Forms.TextBox();
this.fcb_typeCrypto = new System.Windows.Forms.ComboBox();
this.fbt_cryptage = new System.Windows.Forms.Button();
this.fbt_decrypter = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// ftb_origine
//
this.ftb_origine.ForeColor = System.Drawing.Color.Gray;
this.ftb_origine.Location = new System.Drawing.Point(118, 12);
this.ftb_origine.Name = "ftb_origine";
this.ftb_origine.Size = new System.Drawing.Size(415, 20);
this.ftb_origine.TabIndex = 0;
//
// ftb_traiter
//
this.ftb_traiter.ForeColor = System.Drawing.Color.Gray;
this.ftb_traiter.Location = new System.Drawing.Point(118, 149);
this.ftb_traiter.Name = "ftb_traiter";
this.ftb_traiter.Size = new System.Drawing.Size(415, 20);
this.ftb_traiter.TabIndex = 1;
//
// ftb_clef
//
this.ftb_clef.Location = new System.Drawing.Point(118, 38);
this.ftb_clef.Name = "ftb_clef";
this.ftb_clef.Size = new System.Drawing.Size(415, 20);
this.ftb_clef.TabIndex = 2;
//
// fcb_typeCrypto
//
this.fcb_typeCrypto.FormattingEnabled = true;
this.fcb_typeCrypto.Location = new System.Drawing.Point(118, 64);
this.fcb_typeCrypto.Name = "fcb_typeCrypto";
this.fcb_typeCrypto.Size = new System.Drawing.Size(415, 21);
this.fcb_typeCrypto.TabIndex = 4;
//this.fcb_typeCrypto;
//
// fbt_cryptage
//
this.fbt_cryptage.Location = new System.Drawing.Point(12, 91);
this.fbt_cryptage.Name = "fbt_cryptage";
this.fbt_cryptage.Size = new System.Drawing.Size(521, 23);
this.fbt_cryptage.TabIndex = 5;
this.fbt_cryptage.Text = "Crypter";
this.fbt_cryptage.UseVisualStyleBackColor = true;
//
// fbt_decrypter
//
this.fbt_decrypter.Location = new System.Drawing.Point(12, 120);
this.fbt_decrypter.Name = "fbt_decrypter";
this.fbt_decrypter.Size = new System.Drawing.Size(521, 23);
this.fbt_decrypter.TabIndex = 6;
this.fbt_decrypter.Text = "Decrypter";
this.fbt_decrypter.UseVisualStyleBackColor = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(16, 19);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(76, 13);
this.label1.TabIndex = 7;
this.label1.Text = "Text d\'origine :";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(16, 45);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(31, 13);
this.label2.TabIndex = 8;
this.label2.Text = "Clef :";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(16, 72);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(96, 13);
this.label3.TabIndex = 9;
this.label3.Text = "Type de cryptage :";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(19, 155);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(67, 13);
this.label4.TabIndex = 10;
this.label4.Text = "Text Traiter :";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1077, 357);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.fbt_decrypter);
this.Controls.Add(this.fbt_cryptage);
this.Controls.Add(this.fcb_typeCrypto);
this.Controls.Add(this.ftb_clef);
this.Controls.Add(this.ftb_traiter);
this.Controls.Add(this.ftb_origine);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "Form1";
this.Text = "Crypto";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox ftb_origine;
private System.Windows.Forms.TextBox ftb_traiter;
private System.Windows.Forms.TextBox ftb_clef;
private System.Windows.Forms.ComboBox fcb_typeCrypto;
private System.Windows.Forms.Button fbt_cryptage;
private System.Windows.Forms.Button fbt_decrypter;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
}
}