source: extensions/PiwigoLib/TestPiwigoLib/Form1.Designer.cs @ 3819

Last change on this file since 3819 was 3819, checked in by bayral, 15 years ago

pwg.tags.add support

File size: 4.1 KB
Line 
1namespace TestPiwigoLib
2{
3    partial class Form1
4    {
5        /// <summary>
6        /// Variable nécessaire au concepteur.
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// Nettoyage des ressources utilisées.
12        /// </summary>
13        /// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
14        protected override void Dispose(bool disposing)
15        {
16            if (disposing && (components != null))
17            {
18                components.Dispose();
19            }
20            base.Dispose(disposing);
21        }
22
23        #region Code généré par le Concepteur Windows Form
24
25        /// <summary>
26        /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
27        /// le contenu de cette méthode avec l'éditeur de code.
28        /// </summary>
29        private void InitializeComponent()
30        {
31            this.button1 = new System.Windows.Forms.Button();
32            this.tbUser = new System.Windows.Forms.TextBox();
33            this.tbPassword = new System.Windows.Forms.TextBox();
34            this.label1 = new System.Windows.Forms.Label();
35            this.label2 = new System.Windows.Forms.Label();
36            this.SuspendLayout();
37            //
38            // button1
39            //
40            this.button1.Location = new System.Drawing.Point(131, 89);
41            this.button1.Name = "button1";
42            this.button1.Size = new System.Drawing.Size(75, 23);
43            this.button1.TabIndex = 0;
44            this.button1.Text = "Tester";
45            this.button1.UseVisualStyleBackColor = true;
46            this.button1.Click += new System.EventHandler(this.button1_Click);
47            //
48            // tbUser
49            //
50            this.tbUser.Location = new System.Drawing.Point(68, 12);
51            this.tbUser.Name = "tbUser";
52            this.tbUser.Size = new System.Drawing.Size(138, 20);
53            this.tbUser.TabIndex = 1;
54            //
55            // tbPassword
56            //
57            this.tbPassword.Location = new System.Drawing.Point(68, 38);
58            this.tbPassword.Name = "tbPassword";
59            this.tbPassword.PasswordChar = '*';
60            this.tbPassword.Size = new System.Drawing.Size(138, 20);
61            this.tbPassword.TabIndex = 2;
62            this.tbPassword.UseSystemPasswordChar = true;
63            //
64            // label1
65            //
66            this.label1.AutoSize = true;
67            this.label1.Location = new System.Drawing.Point(12, 15);
68            this.label1.Name = "label1";
69            this.label1.Size = new System.Drawing.Size(29, 13);
70            this.label1.TabIndex = 3;
71            this.label1.Text = "User";
72            //
73            // label2
74            //
75            this.label2.AutoSize = true;
76            this.label2.Location = new System.Drawing.Point(12, 41);
77            this.label2.Name = "label2";
78            this.label2.Size = new System.Drawing.Size(53, 13);
79            this.label2.TabIndex = 4;
80            this.label2.Text = "Password";
81            //
82            // Form1
83            //
84            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
85            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
86            this.ClientSize = new System.Drawing.Size(221, 143);
87            this.Controls.Add(this.label2);
88            this.Controls.Add(this.label1);
89            this.Controls.Add(this.tbPassword);
90            this.Controls.Add(this.tbUser);
91            this.Controls.Add(this.button1);
92            this.Name = "Form1";
93            this.Text = "Form1";
94            this.Load += new System.EventHandler(this.Form1_Load);
95            this.ResumeLayout(false);
96            this.PerformLayout();
97
98        }
99
100        #endregion
101
102        private System.Windows.Forms.Button button1;
103        private System.Windows.Forms.TextBox tbUser;
104        private System.Windows.Forms.TextBox tbPassword;
105        private System.Windows.Forms.Label label1;
106        private System.Windows.Forms.Label label2;
107    }
108}
109
Note: See TracBrowser for help on using the repository browser.