-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dialog1.Designer.vb
130 lines (125 loc) · 5.8 KB
/
Dialog1.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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class MsgDialog
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<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
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel()
Me.btnNo = New System.Windows.Forms.Button()
Me.btnYesAll = New System.Windows.Forms.Button()
Me.btnYes = New System.Windows.Forms.Button()
Me.btnNoAll = New System.Windows.Forms.Button()
Me.TextBox1 = New System.Windows.Forms.TextBox()
Me.TableLayoutPanel1.SuspendLayout()
Me.SuspendLayout()
'
'TableLayoutPanel1
'
Me.TableLayoutPanel1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.TableLayoutPanel1.ColumnCount = 4
Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
Me.TableLayoutPanel1.Controls.Add(Me.btnNo, 0, 0)
Me.TableLayoutPanel1.Controls.Add(Me.btnYesAll, 0, 0)
Me.TableLayoutPanel1.Controls.Add(Me.btnYes, 0, 0)
Me.TableLayoutPanel1.Controls.Add(Me.btnNoAll, 1, 0)
Me.TableLayoutPanel1.Location = New System.Drawing.Point(68, 63)
Me.TableLayoutPanel1.Name = "TableLayoutPanel1"
Me.TableLayoutPanel1.RowCount = 1
Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100.0!))
Me.TableLayoutPanel1.Size = New System.Drawing.Size(299, 29)
Me.TableLayoutPanel1.TabIndex = 0
'
'btnNo
'
Me.btnNo.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.btnNo.Dock = System.Windows.Forms.DockStyle.Fill
Me.btnNo.Location = New System.Drawing.Point(151, 3)
Me.btnNo.Name = "btnNo"
Me.btnNo.Size = New System.Drawing.Size(68, 23)
Me.btnNo.TabIndex = 3
Me.btnNo.Text = "No"
'
'btnYesAll
'
Me.btnYesAll.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.btnYesAll.Dock = System.Windows.Forms.DockStyle.Fill
Me.btnYesAll.Location = New System.Drawing.Point(77, 3)
Me.btnYesAll.Name = "btnYesAll"
Me.btnYesAll.Size = New System.Drawing.Size(68, 23)
Me.btnYesAll.TabIndex = 2
Me.btnYesAll.Text = "Yes to All"
'
'btnYes
'
Me.btnYes.Dock = System.Windows.Forms.DockStyle.Fill
Me.btnYes.Location = New System.Drawing.Point(3, 3)
Me.btnYes.Name = "btnYes"
Me.btnYes.Size = New System.Drawing.Size(68, 23)
Me.btnYes.TabIndex = 0
Me.btnYes.Text = "Yes"
'
'btnNoAll
'
Me.btnNoAll.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.btnNoAll.Dock = System.Windows.Forms.DockStyle.Fill
Me.btnNoAll.Location = New System.Drawing.Point(225, 3)
Me.btnNoAll.Name = "btnNoAll"
Me.btnNoAll.Size = New System.Drawing.Size(71, 23)
Me.btnNoAll.TabIndex = 1
Me.btnNoAll.Text = "No to All"
'
'TextBox1
'
Me.TextBox1.BackColor = System.Drawing.SystemColors.Control
Me.TextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None
Me.TextBox1.Location = New System.Drawing.Point(39, 20)
Me.TextBox1.Multiline = True
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(355, 31)
Me.TextBox1.TabIndex = 1
Me.TextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
'
'MsgDialog
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(435, 104)
Me.ControlBox = False
Me.Controls.Add(Me.TextBox1)
Me.Controls.Add(Me.TableLayoutPanel1)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "MsgDialog"
Me.ShowInTaskbar = False
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
Me.Text = "Overwrite Command"
Me.TableLayoutPanel1.ResumeLayout(False)
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel
Friend WithEvents btnYes As System.Windows.Forms.Button
Friend WithEvents btnNoAll As System.Windows.Forms.Button
Friend WithEvents btnNo As System.Windows.Forms.Button
Friend WithEvents btnYesAll As System.Windows.Forms.Button
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
End Class