-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmSample.Designer.vb
89 lines (88 loc) · 4.35 KB
/
frmSample.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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> Partial Class frmSample
#Region "Windows Form Designer generated code "
<System.Diagnostics.DebuggerNonUserCode()> Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
End Sub
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> Protected Overloads Overrides Sub Dispose(ByVal Disposing As Boolean)
If Disposing Then
If Not components Is Nothing Then
components.Dispose()
End If
End If
MyBase.Dispose(Disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
Public ToolTip1 As System.Windows.Forms.ToolTip
Public cdlgOpen As System.Windows.Forms.OpenFileDialog
Public cdlgSave As System.Windows.Forms.SaveFileDialog
Public cdlgFont As System.Windows.Forms.FontDialog
Public cdlgColor As System.Windows.Forms.ColorDialog
Public cdlgPrint As System.Windows.Forms.PrintDialog
Public WithEvents img As System.Windows.Forms.PictureBox
Public WithEvents txt As System.Windows.Forms.RichTextBox
'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.components = New System.ComponentModel.Container
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmSample))
Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
Me.cdlgOpen = New System.Windows.Forms.OpenFileDialog
Me.cdlgSave = New System.Windows.Forms.SaveFileDialog
Me.cdlgFont = New System.Windows.Forms.FontDialog
Me.cdlgColor = New System.Windows.Forms.ColorDialog
Me.cdlgPrint = New System.Windows.Forms.PrintDialog
Me.img = New System.Windows.Forms.PictureBox
Me.txt = New System.Windows.Forms.RichTextBox
CType(Me.img, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'img
'
Me.img.BackColor = System.Drawing.Color.White
Me.img.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
Me.img.Cursor = System.Windows.Forms.Cursors.Default
Me.img.Font = New System.Drawing.Font("Courier New", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.img.ForeColor = System.Drawing.SystemColors.ControlText
Me.img.Location = New System.Drawing.Point(0, 2)
Me.img.Name = "img"
Me.img.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.img.Size = New System.Drawing.Size(261, 211)
Me.img.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize
Me.img.TabIndex = 0
'
'txt
'
Me.txt.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.txt.Location = New System.Drawing.Point(0, 0)
Me.txt.Name = "txt"
Me.txt.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical
Me.txt.Size = New System.Drawing.Size(281, 191)
Me.txt.TabIndex = 1
Me.txt.Text = "RichTextBox1"
'
'frmSample
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.SystemColors.Control
Me.ClientSize = New System.Drawing.Size(292, 225)
Me.Controls.Add(Me.img)
Me.Controls.Add(Me.txt)
Me.Cursor = System.Windows.Forms.Cursors.Default
Me.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Location = New System.Drawing.Point(4, 27)
Me.Name = "frmSample"
Me.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.Text = "Sample"
CType(Me.img, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
#End Region
End Class