forked from dotnet/project-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuildEventCommandLineDialog.Designer.vb
156 lines (147 loc) · 7.35 KB
/
BuildEventCommandLineDialog.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
' Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE.md file in the project root for more information.
Namespace Microsoft.VisualStudio.Editors.PropertyPages
Partial Class BuildEventCommandLineDialog
Friend WithEvents OKButton As System.Windows.Forms.Button
Friend WithEvents InsertButton As System.Windows.Forms.Button
Friend WithEvents Cancel_Button As System.Windows.Forms.Button
Friend WithEvents MacrosPanel As System.Windows.Forms.Panel
Friend WithEvents CommandLinePanel As System.Windows.Forms.Panel
Friend WithEvents HideMacrosButton As System.Windows.Forms.Button
Friend WithEvents ShowMacrosButton As System.Windows.Forms.Button
Friend WithEvents CommandLine As System.Windows.Forms.TextBox
Friend WithEvents TokenList As System.Windows.Forms.ListView
Friend WithEvents Macro As System.Windows.Forms.ColumnHeader
Friend WithEvents Value As System.Windows.Forms.ColumnHeader
Friend WithEvents insertOkCancelTableLayoutPanel As System.Windows.Forms.TableLayoutPanel
Friend WithEvents overarchingTableLayoutPanel As System.Windows.Forms.TableLayoutPanel
Private components As System.ComponentModel.IContainer
Protected Overloads Overrides Sub Dispose(disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
<System.Diagnostics.DebuggerNonUserCode()> Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(BuildEventCommandLineDialog))
Me.InsertButton = New System.Windows.Forms.Button()
Me.OKButton = New System.Windows.Forms.Button()
Me.Cancel_Button = New System.Windows.Forms.Button()
Me.CommandLine = New System.Windows.Forms.TextBox()
Me.ShowMacrosButton = New System.Windows.Forms.Button()
Me.MacrosPanel = New System.Windows.Forms.Panel()
Me.HideMacrosButton = New System.Windows.Forms.Button()
Me.TokenList = New System.Windows.Forms.ListView()
Me.Macro = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
Me.Value = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
Me.CommandLinePanel = New System.Windows.Forms.Panel()
Me.insertOkCancelTableLayoutPanel = New System.Windows.Forms.TableLayoutPanel()
Me.overarchingTableLayoutPanel = New System.Windows.Forms.TableLayoutPanel()
Me.MacrosPanel.SuspendLayout()
Me.insertOkCancelTableLayoutPanel.SuspendLayout()
Me.overarchingTableLayoutPanel.SuspendLayout()
Me.SuspendLayout()
'
'InsertButton
'
resources.ApplyResources(Me.InsertButton, "InsertButton")
Me.InsertButton.Name = "InsertButton"
'
'OKButton
'
resources.ApplyResources(Me.OKButton, "OKButton")
Me.OKButton.DialogResult = System.Windows.Forms.DialogResult.OK
Me.OKButton.Name = "OKButton"
'
'Cancel_Button
'
resources.ApplyResources(Me.Cancel_Button, "Cancel_Button")
Me.Cancel_Button.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.Cancel_Button.Name = "Cancel_Button"
'
'CommandLine
'
Me.CommandLine.AcceptsReturn = True
resources.ApplyResources(Me.CommandLine, "CommandLine")
Me.CommandLine.Name = "CommandLine"
'
'ShowMacrosButton
'
resources.ApplyResources(Me.ShowMacrosButton, "ShowMacrosButton")
Me.ShowMacrosButton.Name = "ShowMacrosButton"
'
'MacrosPanel
'
resources.ApplyResources(Me.MacrosPanel, "MacrosPanel")
Me.MacrosPanel.Controls.Add(Me.HideMacrosButton)
Me.MacrosPanel.Controls.Add(Me.TokenList)
Me.MacrosPanel.Name = "MacrosPanel"
'
'HideMacrosButton
'
resources.ApplyResources(Me.HideMacrosButton, "HideMacrosButton")
Me.HideMacrosButton.Name = "HideMacrosButton"
'
'TokenList
'
resources.ApplyResources(Me.TokenList, "TokenList")
Me.TokenList.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.Macro, Me.Value})
Me.TokenList.MultiSelect = False
Me.TokenList.Name = "TokenList"
Me.TokenList.ShowItemToolTips = True
Me.TokenList.UseCompatibleStateImageBehavior = False
Me.TokenList.View = System.Windows.Forms.View.Details
'
'Macro
'
resources.ApplyResources(Me.Macro, "Macro")
'
'Value
'
resources.ApplyResources(Me.Value, "Value")
'
'CommandLinePanel
'
resources.ApplyResources(Me.CommandLinePanel, "CommandLinePanel")
Me.CommandLinePanel.Name = "CommandLinePanel"
'
'insertOkCancelTableLayoutPanel
'
resources.ApplyResources(Me.insertOkCancelTableLayoutPanel, "insertOkCancelTableLayoutPanel")
Me.insertOkCancelTableLayoutPanel.Controls.Add(Me.ShowMacrosButton, 2, 0)
Me.insertOkCancelTableLayoutPanel.Controls.Add(Me.InsertButton, 0, 1)
Me.insertOkCancelTableLayoutPanel.Controls.Add(Me.OKButton, 1, 1)
Me.insertOkCancelTableLayoutPanel.Controls.Add(Me.Cancel_Button, 2, 1)
Me.insertOkCancelTableLayoutPanel.Name = "insertOkCancelTableLayoutPanel"
'
'overarchingTableLayoutPanel
'
resources.ApplyResources(Me.overarchingTableLayoutPanel, "overarchingTableLayoutPanel")
Me.overarchingTableLayoutPanel.Controls.Add(Me.CommandLine, 0, 0)
Me.overarchingTableLayoutPanel.Controls.Add(Me.MacrosPanel, 0, 1)
Me.overarchingTableLayoutPanel.Controls.Add(Me.insertOkCancelTableLayoutPanel, 0, 2)
Me.overarchingTableLayoutPanel.Name = "overarchingTableLayoutPanel"
'
'BuildEventCommandLineDialog
'
resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.CancelButton = Me.Cancel_Button
Me.Controls.Add(Me.overarchingTableLayoutPanel)
Me.HelpButton = True
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "BuildEventCommandLineDialog"
Me.ShowIcon = False
Me.ShowInTaskbar = False
Me.MacrosPanel.ResumeLayout(False)
Me.MacrosPanel.PerformLayout()
Me.insertOkCancelTableLayoutPanel.ResumeLayout(False)
Me.insertOkCancelTableLayoutPanel.PerformLayout()
Me.overarchingTableLayoutPanel.ResumeLayout(False)
Me.overarchingTableLayoutPanel.PerformLayout()
Me.ResumeLayout(False)
End Sub
End Class
End Namespace