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

Last change on this file was 11850, checked in by bayral, 13 years ago

MAj des truc existant et debut du upload de fichier

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