-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFrmAjoutGamme.Designer.vb
More file actions
75 lines (70 loc) · 2.89 KB
/
Copy pathFrmAjoutGamme.Designer.vb
File metadata and controls
75 lines (70 loc) · 2.89 KB
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class FrmAjoutGamme
Inherits System.Windows.Forms.Form
'Form remplace la méthode Dispose pour nettoyer la liste des composants.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Requise par le Concepteur Windows Form
Private components As System.ComponentModel.IContainer
'REMARQUE : la procédure suivante est requise par le Concepteur Windows Form
'Elle peut être modifiée à l'aide du Concepteur Windows Form.
'Ne la modifiez pas à l'aide de l'éditeur de code.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.TBAjout = New System.Windows.Forms.TextBox()
Me.BtnValider = New System.Windows.Forms.Button()
Me.Label1 = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'TBAjout
'
Me.TBAjout.Location = New System.Drawing.Point(12, 51)
Me.TBAjout.Name = "TBAjout"
Me.TBAjout.Size = New System.Drawing.Size(196, 20)
Me.TBAjout.TabIndex = 0
'
'BtnValider
'
Me.BtnValider.Location = New System.Drawing.Point(64, 77)
Me.BtnValider.Name = "BtnValider"
Me.BtnValider.Size = New System.Drawing.Size(99, 25)
Me.BtnValider.TabIndex = 1
Me.BtnValider.Text = "Ajouter la gamme"
Me.BtnValider.UseVisualStyleBackColor = True
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(43, 23)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(141, 13)
Me.Label1.TabIndex = 2
Me.Label1.Text = "Nom de la nouvelle gamme :"
'
'FrmAjoutGamme
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
Me.ClientSize = New System.Drawing.Size(225, 121)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.BtnValider)
Me.Controls.Add(Me.TBAjout)
Me.Name = "FrmAjoutGamme"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Monin - Ajout de Gamme"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents TBAjout As TextBox
Friend WithEvents BtnValider As Button
Friend WithEvents Label1 As Label
End Class