-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFrmSchematic.Designer.vb
127 lines (123 loc) · 5.64 KB
/
FrmSchematic.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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class FrmSchematic
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()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(FrmSchematic))
Me.ToolBar = New System.Windows.Forms.ToolStrip
Me.MenuStrip = New System.Windows.Forms.MenuStrip
Me.FileToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
Me.ExportToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
Me.EagleSchematicToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
Me.StatusBar = New System.Windows.Forms.StatusStrip
Me.ToolStripStatusLabel1 = New System.Windows.Forms.ToolStripStatusLabel
Me.DoubleBuffer = New unPCB.DoubleBuffer
Me.MenuStrip.SuspendLayout()
Me.StatusBar.SuspendLayout()
Me.SuspendLayout()
'
'ToolBar
'
Me.ToolBar.Location = New System.Drawing.Point(0, 24)
Me.ToolBar.Name = "ToolBar"
Me.ToolBar.Size = New System.Drawing.Size(908, 25)
Me.ToolBar.TabIndex = 0
Me.ToolBar.Text = "ToolStrip1"
'
'MenuStrip
'
Me.MenuStrip.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.FileToolStripMenuItem})
Me.MenuStrip.Location = New System.Drawing.Point(0, 0)
Me.MenuStrip.Name = "MenuStrip"
Me.MenuStrip.Size = New System.Drawing.Size(908, 24)
Me.MenuStrip.TabIndex = 1
Me.MenuStrip.Text = "MenuStrip1"
'
'FileToolStripMenuItem
'
Me.FileToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ExportToolStripMenuItem})
Me.FileToolStripMenuItem.Name = "FileToolStripMenuItem"
Me.FileToolStripMenuItem.Size = New System.Drawing.Size(35, 20)
Me.FileToolStripMenuItem.Text = "File"
'
'ExportToolStripMenuItem
'
Me.ExportToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.EagleSchematicToolStripMenuItem})
Me.ExportToolStripMenuItem.Name = "ExportToolStripMenuItem"
Me.ExportToolStripMenuItem.Size = New System.Drawing.Size(152, 22)
Me.ExportToolStripMenuItem.Text = "Export"
'
'EagleSchematicToolStripMenuItem
'
Me.EagleSchematicToolStripMenuItem.Name = "EagleSchematicToolStripMenuItem"
Me.EagleSchematicToolStripMenuItem.Size = New System.Drawing.Size(154, 22)
Me.EagleSchematicToolStripMenuItem.Text = "Eagle Schematic"
'
'StatusBar
'
Me.StatusBar.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripStatusLabel1})
Me.StatusBar.Location = New System.Drawing.Point(0, 486)
Me.StatusBar.Name = "StatusBar"
Me.StatusBar.Size = New System.Drawing.Size(908, 22)
Me.StatusBar.TabIndex = 2
Me.StatusBar.Text = "StatusStrip1"
'
'ToolStripStatusLabel1
'
Me.ToolStripStatusLabel1.Name = "ToolStripStatusLabel1"
Me.ToolStripStatusLabel1.Size = New System.Drawing.Size(0, 17)
'
'DoubleBuffer
'
Me.DoubleBuffer.Cursor = System.Windows.Forms.Cursors.Cross
Me.DoubleBuffer.Dock = System.Windows.Forms.DockStyle.Fill
Me.DoubleBuffer.Location = New System.Drawing.Point(0, 49)
Me.DoubleBuffer.Name = "DoubleBuffer"
Me.DoubleBuffer.Size = New System.Drawing.Size(908, 437)
Me.DoubleBuffer.TabIndex = 3
'
'FrmSchematic
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(908, 508)
Me.Controls.Add(Me.DoubleBuffer)
Me.Controls.Add(Me.StatusBar)
Me.Controls.Add(Me.ToolBar)
Me.Controls.Add(Me.MenuStrip)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MainMenuStrip = Me.MenuStrip
Me.Name = "FrmSchematic"
Me.Text = "Schematic"
Me.MenuStrip.ResumeLayout(False)
Me.MenuStrip.PerformLayout()
Me.StatusBar.ResumeLayout(False)
Me.StatusBar.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents ToolBar As System.Windows.Forms.ToolStrip
Friend WithEvents MenuStrip As System.Windows.Forms.MenuStrip
Friend WithEvents StatusBar As System.Windows.Forms.StatusStrip
Friend WithEvents DoubleBuffer As unPCB.DoubleBuffer
Friend WithEvents ToolStripStatusLabel1 As System.Windows.Forms.ToolStripStatusLabel
Friend WithEvents FileToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents ExportToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents EagleSchematicToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
End Class