⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 settingsform.designer.vb

📁 Microsoft Mobile Development Handbook的代码,有C#,VB,C++的
💻 VB
字号:
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Public Class SettingsForm
    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)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer
    Private mainMenu1 As System.Windows.Forms.MainMenu

    '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 FontnameLabel As System.Windows.Forms.Label
        Dim FontSizeLabel As System.Windows.Forms.Label
        Me.mainMenu1 = New System.Windows.Forms.MainMenu
        Me.SettingsBindingSource = New System.Windows.Forms.BindingSource(Me.components)
        Me.FontnameComboBox = New System.Windows.Forms.ComboBox
        Me.backGroundColorComboBox = New System.Windows.Forms.ComboBox
        Me.label2 = New System.Windows.Forms.Label
        Me.textColorComboBox = New System.Windows.Forms.ComboBox
        Me.label1 = New System.Windows.Forms.Label
        Me.fontSizeComboBox = New System.Windows.Forms.ComboBox
        Me.saveMenuItem = New System.Windows.Forms.MenuItem
        Me.cancelMenuItem = New System.Windows.Forms.MenuItem
        FontnameLabel = New System.Windows.Forms.Label
        FontSizeLabel = New System.Windows.Forms.Label
        Me.SuspendLayout()
        '
        'mainMenu1
        '
        Me.mainMenu1.MenuItems.Add(Me.saveMenuItem)
        Me.mainMenu1.MenuItems.Add(Me.cancelMenuItem)
        '
        'FontnameLabel
        '
        FontnameLabel.Location = New System.Drawing.Point(0, 0)
        FontnameLabel.Name = "FontnameLabel"
        FontnameLabel.Size = New System.Drawing.Size(64, 16)
        FontnameLabel.Text = "Fontname:"
        '
        'SettingsBindingSource
        '
        Me.SettingsBindingSource.DataSource = GetType(XMLSerialization.Settings)
        '
        'FontnameComboBox
        '
        Me.FontnameComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.SettingsBindingSource, "Fontname", True))
        Me.FontnameComboBox.Items.Add("Nina")
        Me.FontnameComboBox.Items.Add("Segoe Condensed")
        Me.FontnameComboBox.Location = New System.Drawing.Point(0, 16)
        Me.FontnameComboBox.Name = "FontnameComboBox"
        Me.FontnameComboBox.TabIndex = 1
        '
        'FontSizeLabel
        '
        FontSizeLabel.Location = New System.Drawing.Point(0, 49)
        FontSizeLabel.Name = "FontSizeLabel"
        FontSizeLabel.Size = New System.Drawing.Size(58, 16)
        FontSizeLabel.Text = "Font Size:"
        '
        'backGroundColorComboBox
        '
        Me.backGroundColorComboBox.Items.Add("Black")
        Me.backGroundColorComboBox.Items.Add("White")
        Me.backGroundColorComboBox.Items.Add("Yellow")
        Me.backGroundColorComboBox.Items.Add("Green")
        Me.backGroundColorComboBox.Location = New System.Drawing.Point(0, 155)
        Me.backGroundColorComboBox.Name = "backGroundColorComboBox"
        Me.backGroundColorComboBox.TabIndex = 4
        '
        'label2
        '
        Me.label2.Location = New System.Drawing.Point(1, 136)
        Me.label2.Name = "label2"
        Me.label2.Size = New System.Drawing.Size(120, 16)
        Me.label2.Text = "Background Color:"
        '
        'textColorComboBox
        '
        Me.textColorComboBox.Items.Add("White")
        Me.textColorComboBox.Items.Add("Black")
        Me.textColorComboBox.Items.Add("Red")
        Me.textColorComboBox.Items.Add("Blue")
        Me.textColorComboBox.Location = New System.Drawing.Point(0, 111)
        Me.textColorComboBox.Name = "textColorComboBox"
        Me.textColorComboBox.TabIndex = 3
        '
        'label1
        '
        Me.label1.Location = New System.Drawing.Point(0, 94)
        Me.label1.Name = "label1"
        Me.label1.Size = New System.Drawing.Size(96, 16)
        Me.label1.Text = "Text Color:"
        '
        'fontSizeComboBox
        '
        Me.fontSizeComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.SettingsBindingSource, "FontSize", True))
        Me.fontSizeComboBox.Items.Add("9")
        Me.fontSizeComboBox.Items.Add("10")
        Me.fontSizeComboBox.Items.Add("11")
        Me.fontSizeComboBox.Items.Add("12")
        Me.fontSizeComboBox.Location = New System.Drawing.Point(0, 68)
        Me.fontSizeComboBox.Name = "fontSizeComboBox"
        Me.fontSizeComboBox.TabIndex = 2
        '
        'saveMenuItem
        '
        Me.saveMenuItem.Text = "Save"
        '
        'cancelMenuItem
        '
        Me.cancelMenuItem.Text = "Cancel"
        '
        'SettingsForm
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(96.0!, 96.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
        Me.AutoScroll = True
        Me.ClientSize = New System.Drawing.Size(176, 180)
        Me.Controls.Add(Me.fontSizeComboBox)
        Me.Controls.Add(Me.backGroundColorComboBox)
        Me.Controls.Add(Me.label2)
        Me.Controls.Add(Me.textColorComboBox)
        Me.Controls.Add(Me.label1)
        Me.Controls.Add(FontnameLabel)
        Me.Controls.Add(Me.FontnameComboBox)
        Me.Controls.Add(FontSizeLabel)
        Me.Menu = Me.mainMenu1
        Me.Name = "SettingsForm"
        Me.Text = "SettingsForm"
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents SettingsBindingSource As System.Windows.Forms.BindingSource
    Friend WithEvents FontnameComboBox As System.Windows.Forms.ComboBox
    Private WithEvents backGroundColorComboBox As System.Windows.Forms.ComboBox
    Private WithEvents label2 As System.Windows.Forms.Label
    Private WithEvents textColorComboBox As System.Windows.Forms.ComboBox
    Private WithEvents label1 As System.Windows.Forms.Label
    Private WithEvents fontSizeComboBox As System.Windows.Forms.ComboBox
    Friend WithEvents saveMenuItem As System.Windows.Forms.MenuItem
    Friend WithEvents cancelMenuItem As System.Windows.Forms.MenuItem
End Class

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -