Untitled
unknown
csharp
10 months ago
3.7 kB
6
Indexable
namespace WinFormApp
{
partial class MainForm
{
/// <summary>
/// Variable nécessaire au concepteur.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Nettoyer les ressources en cours d'utilisation.
/// </summary>
/// <param name="disposing">Si vrai, supprime les ressources gérées ; sinon, conserve les ressources non gérées.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Code généré par le concepteur de Windows Form
/// <summary>
/// Méthode requise pour prendre en charge la conception — ne modifiez pas le contenu de cette méthode
/// avec l'éditeur de code.
/// </summary>
private void InitializeComponent()
{
this.btnEncrypt = new System.Windows.Forms.Button();
this.btnDecrypt = new System.Windows.Forms.Button();
this.txtPassword = new System.Windows.Forms.TextBox();
this.lblPassword = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnEncrypt
//
this.btnEncrypt.Location = new System.Drawing.Point(12, 75);
this.btnEncrypt.Name = "btnEncrypt";
this.btnEncrypt.Size = new System.Drawing.Size(100, 23);
this.btnEncrypt.TabIndex = 0;
this.btnEncrypt.Text = "Crypter";
this.btnEncrypt.UseVisualStyleBackColor = true;
this.btnEncrypt.Click += new System.EventHandler(this.btnEncrypt_Click);
//
// btnDecrypt
//
this.btnDecrypt.Location = new System.Drawing.Point(12, 104);
this.btnDecrypt.Name = "btnDecrypt";
this.btnDecrypt.Size = new System.Drawing.Size(100, 23);
this.btnDecrypt.TabIndex = 1;
this.btnDecrypt.Text = "Décrypter";
this.btnDecrypt.UseVisualStyleBackColor = true;
this.btnDecrypt.Click += new System.EventHandler(this.btnDecrypt_Click);
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(12, 34);
this.txtPassword.Name = "txtPassword";
this.txtPassword.Size = new System.Drawing.Size(260, 20);
this.txtPassword.TabIndex = 2;
//
// lblPassword
//
this.lblPassword.AutoSize = true;
this.lblPassword.Location = new System.Drawing.Point(12, 18);
this.lblPassword.Name = "lblPassword";
this.lblPassword.Size = new System.Drawing.Size(53, 13);
this.lblPassword.TabIndex = 3;
this.lblPassword.Text = "Mot de passe";
//
// MainForm
//
this.ClientSize = new System.Drawing.Size(284, 141);
this.Controls.Add(this.lblPassword);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.btnDecrypt);
this.Controls.Add(this.btnEncrypt);
this.Name = "MainForm";
this.Text = "Cryptage de fichiers";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnEncrypt;
private System.Windows.Forms.Button btnDecrypt;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.Label lblPassword;
}
}Editor is loading...
Leave a Comment