forked from Drossel-Studio/BMSE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmWindowAbout.Designer.vb
More file actions
73 lines (72 loc) · 3.73 KB
/
frmWindowAbout.Designer.vb
File metadata and controls
73 lines (72 loc) · 3.73 KB
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> Partial Class frmWindowAbout
#Region "Windows フォーム デザイナによって生成されたコード "
<System.Diagnostics.DebuggerNonUserCode()> Public Sub New()
MyBase.New()
'この呼び出しは、Windows フォーム デザイナで必要です。
InitializeComponent()
stringFont = New Font(Font.FontFamily, Font.Size, Font.Style, Font.Unit, Font.GdiCharSet, Font.GdiVerticalFont)
End Sub
'Form は、コンポーネント一覧に後処理を実行するために dispose をオーバーライドします。
<System.Diagnostics.DebuggerNonUserCode()> Protected Overloads Overrides Sub Dispose(ByVal Disposing As Boolean)
stringFont.Dispose()
If Disposing Then
If Not components Is Nothing Then
components.Dispose()
End If
End If
MyBase.Dispose(Disposing)
End Sub
'Windows フォーム デザイナで必要です。
Private components As System.ComponentModel.IContainer
Public WithEvents tmrMain As System.Windows.Forms.Timer
Public WithEvents picMain As System.Windows.Forms.Panel
'メモ: 以下のプロシージャは Windows フォーム デザイナで必要です。
'Windows フォーム デザイナを使って変更できます。
'コード エディタを使用して、変更しないでください。
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmWindowAbout))
Me.picMain = New System.Windows.Forms.Panel()
Me.tmrMain = New System.Windows.Forms.Timer(Me.components)
Me.SuspendLayout()
'
'picMain
'
Me.picMain.BackColor = System.Drawing.SystemColors.Control
Me.picMain.BackgroundImage = CType(resources.GetObject("picMain.BackgroundImage"), System.Drawing.Image)
Me.picMain.Cursor = System.Windows.Forms.Cursors.Default
Me.picMain.Font = New System.Drawing.Font("MS ゴシック", 12.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Underline), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(128, Byte))
Me.picMain.ForeColor = System.Drawing.SystemColors.ControlText
Me.picMain.Location = New System.Drawing.Point(0, 0)
Me.picMain.Name = "picMain"
Me.picMain.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.picMain.Size = New System.Drawing.Size(526, 196)
Me.picMain.TabIndex = 0
Me.picMain.TabStop = True
Me.picMain.Visible = False
'
'tmrMain
'
'
'frmWindowAbout
'
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None
Me.BackColor = System.Drawing.Color.Black
Me.ClientSize = New System.Drawing.Size(526, 196)
Me.Controls.Add(Me.picMain)
Me.Cursor = System.Windows.Forms.Cursors.Default
Me.DoubleBuffered = True
Me.Font = New System.Drawing.Font("MS ゴシック", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Location = New System.Drawing.Point(3, 19)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "frmWindowAbout"
Me.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.ShowInTaskbar = False
Me.Text = "About BMSE"
Me.ResumeLayout(False)
End Sub
#End Region
End Class