-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainForm.Designer.cs
105 lines (100 loc) · 3.93 KB
/
MainForm.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
namespace VocalConnect
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
settingsButton = new Button();
pictureBox1 = new PictureBox();
label1 = new Label();
timer1 = new System.Windows.Forms.Timer(components);
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
SuspendLayout();
//
// settingsButton
//
settingsButton.Location = new Point(12, 306);
settingsButton.Name = "settingsButton";
settingsButton.Size = new Size(490, 41);
settingsButton.TabIndex = 3;
settingsButton.Text = "Paramètres de VocalConnect";
settingsButton.UseVisualStyleBackColor = true;
settingsButton.Click += settingsButton_Click;
//
// pictureBox1
//
pictureBox1.Anchor = AnchorStyles.Bottom;
pictureBox1.Image = Properties.Resources.zoom;
pictureBox1.Location = new Point(-8, -22);
pictureBox1.Margin = new Padding(0);
pictureBox1.Name = "pictureBox1";
pictureBox1.Size = new Size(530, 307);
pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
pictureBox1.TabIndex = 4;
pictureBox1.TabStop = false;
//
// label1
//
label1.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
label1.AutoSize = true;
label1.ForeColor = Color.White;
label1.Location = new Point(174, 367);
label1.Name = "label1";
label1.Size = new Size(328, 15);
label1.TabIndex = 5;
label1.Text = "Pour toute question sur ce logiciel, contactez Alexy DA CRUZ";
//
// MainForm
//
AccessibleDescription = "Page d'accueil de VocalConnect";
AccessibleName = "VocalConnect";
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.FromArgb(44, 62, 80);
ClientSize = new Size(514, 399);
Controls.Add(label1);
Controls.Add(pictureBox1);
Controls.Add(settingsButton);
FormBorderStyle = FormBorderStyle.FixedSingle;
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
MinimizeBox = false;
Name = "MainForm";
StartPosition = FormStartPosition.CenterScreen;
Text = "VocalConnect";
Load += MainForm_Load;
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button settingsButton;
private PictureBox pictureBox1;
private Label label1;
private System.Windows.Forms.Timer timer1;
}
}