MyDialogFrm.Designer.vb
1: <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
2: Partial Class MyDialogFrm
3: Inherits System.Windows.Forms.Form
4:
5: 'Form overrides dispose to clean up the component list.
6: <System.Diagnostics.DebuggerNonUserCode()> _
7: Protected Overrides Sub Dispose(ByVal disposing As Boolean)
8: Try
9: If disposing AndAlso components IsNot Nothing Then
10: components.Dispose()
11: End If
12: Finally
13: MyBase.Dispose(disposing)
14: End Try
15: End Sub
16:
17: 'Required by the Windows Form Designer
18: Private components As System.ComponentModel.IContainer
19:
20: 'NOTE: The following procedure is required by the Windows Form Designer
21: 'It can be modified using the Windows Form Designer.
22: 'Do not modify it using the code editor.
23: <System.Diagnostics.DebuggerStepThrough()> _
24: Private Sub InitializeComponent()
25: Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel
26: Me.OK_Button = New System.Windows.Forms.Button
27: Me.Cancel_Button = New System.Windows.Forms.Button
28: Me.Label1 = New System.Windows.Forms.Label
29: Me.TableLayoutPanel1.SuspendLayout()
30: Me.SuspendLayout()
31: '
32: 'TableLayoutPanel1
33: '
34: Me.TableLayoutPanel1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
35: Me.TableLayoutPanel1.ColumnCount = 2
36: Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
37: Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
38: Me.TableLayoutPanel1.Controls.Add(Me.Cancel_Button, 1, 0)
39: Me.TableLayoutPanel1.Controls.Add(Me.OK_Button, 0, 0)
40: Me.TableLayoutPanel1.Location = New System.Drawing.Point(112, 88)
41: Me.TableLayoutPanel1.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
42: Me.TableLayoutPanel1.Name = "TableLayoutPanel1"
43: Me.TableLayoutPanel1.RowCount = 1
44: Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
45: Me.TableLayoutPanel1.Size = New System.Drawing.Size(195, 36)
46: Me.TableLayoutPanel1.TabIndex = 0
47: '
48: 'OK_Button
49: '
50: Me.OK_Button.Anchor = System.Windows.Forms.AnchorStyles.None
51: Me.OK_Button.Location = New System.Drawing.Point(4, 4)
52: Me.OK_Button.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
53: Me.OK_Button.Name = "OK_Button"
54: Me.OK_Button.Size = New System.Drawing.Size(89, 28)
55: Me.OK_Button.TabIndex = 0
56: Me.OK_Button.Text = "OK"
57: '
58: 'Cancel_Button
59: '
60: Me.Cancel_Button.Anchor = System.Windows.Forms.AnchorStyles.None
61: Me.Cancel_Button.DialogResult = System.Windows.Forms.DialogResult.Cancel
62: Me.Cancel_Button.Location = New System.Drawing.Point(101, 4)
63: Me.Cancel_Button.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
64: Me.Cancel_Button.Name = "Cancel_Button"
65: Me.Cancel_Button.Size = New System.Drawing.Size(89, 28)
66: Me.Cancel_Button.TabIndex = 1
67: Me.Cancel_Button.Text = "Cancel"
68: '
69: 'Label1
70: '
71: Me.Label1.AutoSize = True
72: Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
73: Me.Label1.Location = New System.Drawing.Point(39, 29)
74: Me.Label1.Name = "Label1"
75: Me.Label1.Size = New System.Drawing.Size(335, 36)
76: Me.Label1.TabIndex = 1
77: Me.Label1.Text = "Using a form as a dialog"
78: '
79: 'MyDialogFrm
80: '
81: Me.AcceptButton = Me.OK_Button
82: Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 16.0!)
83: Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
84: Me.CancelButton = Me.Cancel_Button
85: Me.ClientSize = New System.Drawing.Size(405, 137)
86: Me.Controls.Add(Me.Label1)
87: Me.Controls.Add(Me.TableLayoutPanel1)
88: Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
89: Me.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
90: Me.MaximizeBox = False
91: Me.MinimizeBox = False
92: Me.Name = "MyDialogFrm"
93: Me.ShowInTaskbar = False
94: Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
95: Me.Text = "Dialog Box"
96: Me.TableLayoutPanel1.ResumeLayout(False)
97: Me.ResumeLayout(False)
98: Me.PerformLayout()
99:
100: End Sub
101: Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel
102: Friend WithEvents OK_Button As System.Windows.Forms.Button
103: Friend WithEvents Cancel_Button As System.Windows.Forms.Button
104: Friend WithEvents Label1 As System.Windows.Forms.Label
105:
106: End Class