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

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

correct Test Windows

File size: 6.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.label1 = new System.Windows.Forms.Label();
33            this.label2 = new System.Windows.Forms.Label();
34            this.label3 = new System.Windows.Forms.Label();
35            this.tbServer = new System.Windows.Forms.TextBox();
36            this.tbUser = new System.Windows.Forms.TextBox();
37            this.tbPassword = new System.Windows.Forms.TextBox();
38            this.SuspendLayout();
39            //
40            // button1
41            //
42            this.button1.Location = new System.Drawing.Point(131, 89);
43            this.button1.Name = "button1";
44            this.button1.Size = new System.Drawing.Size(75, 23);
45            this.button1.TabIndex = 40;
46            this.button1.Text = "Tester";
47            this.button1.UseVisualStyleBackColor = true;
48            this.button1.Click += new System.EventHandler(this.button1_Click);
49            //
50            // label1
51            //
52            this.label1.AutoSize = true;
53            this.label1.Location = new System.Drawing.Point(12, 40);
54            this.label1.Name = "label1";
55            this.label1.Size = new System.Drawing.Size(29, 13);
56            this.label1.TabIndex = 20;
57            this.label1.Text = "User";
58            //
59            // label2
60            //
61            this.label2.AutoSize = true;
62            this.label2.Location = new System.Drawing.Point(12, 66);
63            this.label2.Name = "label2";
64            this.label2.Size = new System.Drawing.Size(53, 13);
65            this.label2.TabIndex = 30;
66            this.label2.Text = "Password";
67            //
68            // label3
69            //
70            this.label3.AutoSize = true;
71            this.label3.Location = new System.Drawing.Point(12, 14);
72            this.label3.Name = "label3";
73            this.label3.Size = new System.Drawing.Size(38, 13);
74            this.label3.TabIndex = 10;
75            this.label3.Text = "Server";
76            //
77            // tbServer
78            //
79            this.tbServer.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::TestPiwigoLib.Properties.Settings.Default, "serverUrlData", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
80            this.tbServer.Location = new System.Drawing.Point(68, 11);
81            this.tbServer.Name = "tbServer";
82            this.tbServer.Size = new System.Drawing.Size(138, 20);
83            this.tbServer.TabIndex = 11;
84            this.tbServer.Text = global::TestPiwigoLib.Properties.Settings.Default.serverUrlData;
85            //
86            // tbUser
87            //
88            this.tbUser.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::TestPiwigoLib.Properties.Settings.Default, "userData", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
89            this.tbUser.Location = new System.Drawing.Point(68, 37);
90            this.tbUser.Name = "tbUser";
91            this.tbUser.Size = new System.Drawing.Size(138, 20);
92            this.tbUser.TabIndex = 21;
93            this.tbUser.Text = global::TestPiwigoLib.Properties.Settings.Default.userData;
94            //
95            // tbPassword
96            //
97            this.tbPassword.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::TestPiwigoLib.Properties.Settings.Default, "pwdData", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
98            this.tbPassword.Location = new System.Drawing.Point(68, 63);
99            this.tbPassword.Name = "tbPassword";
100            this.tbPassword.PasswordChar = '*';
101            this.tbPassword.Size = new System.Drawing.Size(138, 20);
102            this.tbPassword.TabIndex = 31;
103            this.tbPassword.Text = global::TestPiwigoLib.Properties.Settings.Default.pwdData;
104            //
105            // Form1
106            //
107            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
108            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
109            this.ClientSize = new System.Drawing.Size(221, 143);
110            this.Controls.Add(this.tbPassword);
111            this.Controls.Add(this.label3);
112            this.Controls.Add(this.tbServer);
113            this.Controls.Add(this.label2);
114            this.Controls.Add(this.label1);
115            this.Controls.Add(this.tbUser);
116            this.Controls.Add(this.button1);
117            this.Name = "Form1";
118            this.Text = "Tester PiwigoLib";
119            this.Load += new System.EventHandler(this.Form1_Load);
120            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
121            this.ResumeLayout(false);
122            this.PerformLayout();
123
124        }
125
126        #endregion
127
128        private System.Windows.Forms.Button button1;
129        private System.Windows.Forms.TextBox tbUser;
130        private System.Windows.Forms.Label label1;
131        private System.Windows.Forms.Label label2;
132        private System.Windows.Forms.Label label3;
133        private System.Windows.Forms.TextBox tbServer;
134        private System.Windows.Forms.TextBox tbPassword;
135    }
136}
137
Note: See TracBrowser for help on using the repository browser.