📄 frmwincecontrols.designer.vb
字号:
Imports Microsoft.VisualBasic
Imports System
Namespace CodeForChapter2
Public Partial Class frmWinCEControls
''' <summary>
''' Required designer variable.
''' </summary>
Private components As System.ComponentModel.IContainer = Nothing
Private mainMenu1 As System.Windows.Forms.MainMenu
''' <summary>
''' Clean up any resources being used.
''' </summary>
''' <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing AndAlso (Not components Is Nothing) Then
components.Dispose()
End If
MyBase.Dispose(disposing)
End Sub
#Region "Windows Form Designer generated code"
''' <summary>
''' Required method for Designer support - do not modify
''' the contents of this method with the code editor.
''' </summary>
Private Sub InitializeComponent()
Me.mainMenu1 = New System.Windows.Forms.MainMenu()
Me.notification1 = New Microsoft.WindowsCE.Forms.Notification()
Me.documentList1 = New Microsoft.WindowsCE.Forms.DocumentList()
Me.menuItem1 = New System.Windows.Forms.MenuItem()
Me.SuspendLayout()
'
' mainMenu1
'
Me.mainMenu1.MenuItems.Add(Me.menuItem1)
'
' notification1
'
Me.notification1.Caption = "my caption"
Me.notification1.Text = "my notific"
' Me.notification1.ResponseSubmitted += New Microsoft.WindowsCE.Forms.ResponseSubmittedEventHandler(Me.notification1_ResponseSubmitted);
'
' documentList1
'
Me.documentList1.Location = New System.Drawing.Point(0, 0)
Me.documentList1.Name = "documentList1"
Me.documentList1.Size = New System.Drawing.Size(240, 268)
Me.documentList1.TabIndex = 0
'
' menuItem1
'
Me.menuItem1.Text = "Show notification"
' Me.menuItem1.Click += New System.EventHandler(Me.menuItem1_Click);
'
' frmWinCEControls
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(96F, 96F)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
Me.AutoScroll = True
Me.ClientSize = New System.Drawing.Size(240, 268)
Me.Controls.Add(Me.documentList1)
Me.Menu = Me.mainMenu1
Me.Name = "frmWinCEControls"
Me.Text = "frmWinCEControls"
' Me.Closing += New System.ComponentModel.CancelEventHandler(Me.frmWinCEControls_Closing);
Me.ResumeLayout(False)
End Sub
#End Region
Private WithEvents notification1 As Microsoft.WindowsCE.Forms.Notification
Private documentList1 As Microsoft.WindowsCE.Forms.DocumentList
Private WithEvents menuItem1 As System.Windows.Forms.MenuItem
End Class
End Namespace
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -