203 lines
8.5 KiB
C#
203 lines
8.5 KiB
C#
using System;
|
||
using System.Drawing;
|
||
using System.Windows.Forms;
|
||
|
||
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.components = new System.ComponentModel.Container();
|
||
this.ftb_origine = 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.ftb_traiter = new System.Windows.Forms.TextBox();
|
||
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.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// ftb_origine
|
||
//
|
||
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_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 = 1;
|
||
//
|
||
// fcb_typeCrypto
|
||
//
|
||
this.fcb_typeCrypto.FormattingEnabled = true;
|
||
this.fcb_typeCrypto.Items.AddRange(new object[] {
|
||
"Dot Net",
|
||
"PERSO",
|
||
"wubba lubba dub dub"});
|
||
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.SelectedIndexChanged += new System.EventHandler(this.fcb_typeCrypto_SelectedIndexChanged);
|
||
//
|
||
// fbt_cryptage
|
||
//
|
||
this.fbt_cryptage.Location = new System.Drawing.Point(19, 91);
|
||
this.fbt_cryptage.Name = "fbt_cryptage";
|
||
this.fbt_cryptage.Size = new System.Drawing.Size(514, 23);
|
||
this.fbt_cryptage.TabIndex = 5;
|
||
this.fbt_cryptage.Text = "Crypter";
|
||
this.fbt_cryptage.UseVisualStyleBackColor = true;
|
||
this.fbt_cryptage.Click += new System.EventHandler(this.fbt_cryptage_Click);
|
||
//
|
||
// fbt_decrypter
|
||
//
|
||
this.fbt_decrypter.Location = new System.Drawing.Point(19, 120);
|
||
this.fbt_decrypter.Name = "fbt_decrypter";
|
||
this.fbt_decrypter.Size = new System.Drawing.Size(514, 23);
|
||
this.fbt_decrypter.TabIndex = 6;
|
||
this.fbt_decrypter.Text = "Decrypter";
|
||
this.fbt_decrypter.UseVisualStyleBackColor = true;
|
||
this.fbt_decrypter.Click += new System.EventHandler(this.fbt_decrypter_Click);
|
||
//
|
||
// ftb_traiter
|
||
//
|
||
|
||
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 = 15;
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(19, 15);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(76, 13);
|
||
this.label1.TabIndex = 7;
|
||
this.label1.Text = "Text d\'origine :";
|
||
this.label1.Click += new System.EventHandler(this.label1_Click);
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(19, 41);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(31, 13);
|
||
this.label2.TabIndex = 8;
|
||
this.label2.Text = "Clef :";
|
||
this.label2.Click += new System.EventHandler(this.label2_Click);
|
||
//
|
||
// label3
|
||
//
|
||
this.label3.AutoSize = true;
|
||
this.label3.Location = new System.Drawing.Point(19, 67);
|
||
this.label3.Name = "label3";
|
||
this.label3.Size = new System.Drawing.Size(96, 13);
|
||
this.label3.TabIndex = 9;
|
||
this.label3.Text = "Type de cryptage :";
|
||
this.label3.Click += new System.EventHandler(this.label3_Click);
|
||
//
|
||
// label4
|
||
//
|
||
this.label4.AutoSize = true;
|
||
this.label4.Location = new System.Drawing.Point(19, 152);
|
||
this.label4.Name = "label4";
|
||
this.label4.Size = new System.Drawing.Size(67, 13);
|
||
this.label4.TabIndex = 10;
|
||
this.label4.Text = "Text Traiter :";
|
||
//
|
||
// pictureBox1
|
||
//
|
||
this.pictureBox1.Location = new System.Drawing.Point(19, 188);
|
||
this.pictureBox1.MaximumSize = new System.Drawing.Size(514, 250);
|
||
this.pictureBox1.Name = "pictureBox1";
|
||
this.pictureBox1.Size = new System.Drawing.Size(514, 250);
|
||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||
this.pictureBox1.TabIndex = 11;
|
||
this.pictureBox1.TabStop = false;
|
||
//
|
||
// timer1
|
||
//
|
||
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
||
//
|
||
// Form1
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(554, 450);
|
||
this.Controls.Add(this.pictureBox1);
|
||
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";
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||
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;
|
||
private System.Windows.Forms.PictureBox pictureBox1;
|
||
private Timer timer1;
|
||
}
|
||
}
|
||
|