This repository has been archived by the owner on Jun 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Vanilla.Designer.vb
81 lines (76 loc) · 3.07 KB
/
Vanilla.Designer.vb
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class Vanilla
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.NextBtn = New System.Windows.Forms.Button()
Me.VersionsList = New System.Windows.Forms.ListView()
Me.VersionName = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
Me.VersionType = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
Me.SuspendLayout()
'
'NextBtn
'
Me.NextBtn.Enabled = False
Me.NextBtn.Font = New System.Drawing.Font("Comic Sans MS", 25.0!)
Me.NextBtn.Location = New System.Drawing.Point(12, 374)
Me.NextBtn.Name = "NextBtn"
Me.NextBtn.Size = New System.Drawing.Size(275, 64)
Me.NextBtn.TabIndex = 0
Me.NextBtn.Text = "Suivant"
Me.NextBtn.UseVisualStyleBackColor = True
'
'VersionsList
'
Me.VersionsList.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.VersionName, Me.VersionType})
Me.VersionsList.HideSelection = False
Me.VersionsList.Location = New System.Drawing.Point(12, 12)
Me.VersionsList.MultiSelect = False
Me.VersionsList.Name = "VersionsList"
Me.VersionsList.Size = New System.Drawing.Size(275, 356)
Me.VersionsList.TabIndex = 2
Me.VersionsList.UseCompatibleStateImageBehavior = False
Me.VersionsList.View = System.Windows.Forms.View.Details
'
'VersionName
'
Me.VersionName.Text = "Nom"
Me.VersionName.Width = 144
'
'VersionType
'
Me.VersionType.Text = "Type"
Me.VersionType.Width = 121
'
'Vanilla
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(299, 450)
Me.Controls.Add(Me.VersionsList)
Me.Controls.Add(Me.NextBtn)
Me.Name = "Vanilla"
Me.Text = "Vanilla"
Me.ResumeLayout(False)
End Sub
Friend WithEvents NextBtn As Button
Friend WithEvents VersionsList As ListView
Friend WithEvents VersionType As ColumnHeader
Friend WithEvents VersionName As ColumnHeader
End Class