本文整理汇总了VB.NET中System.Windows.Forms.ToolStripComboBox类的典型用法代码示例。如果您正苦于以下问题:VB.NET ToolStripComboBox类的具体用法?VB.NET ToolStripComboBox怎么用?VB.NET ToolStripComboBox使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ToolStripComboBox类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Form1
' 导入命名空间
Imports System.Text
Imports System.Windows.Forms
Public Class Form1
Inherits Form
Private toolStrip1 As ToolStrip
Private toolStripComboBox1 As ToolStripComboBox
Public Sub New()
InitializeComponent()
End Sub
<STAThread()> _
Shared Sub Main()
Application.EnableVisualStyles()
Application.Run(New Form1())
End Sub
Private Sub InitializeComponent()
toolStrip1 = New System.Windows.Forms.ToolStrip()
toolStripComboBox1 = New System.Windows.Forms.ToolStripComboBox()
toolStrip1.SuspendLayout()
SuspendLayout()
'
' toolStrip1
'
toolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {toolStripComboBox1})
toolStrip1.Location = New System.Drawing.Point(0, 0)
toolStrip1.Name = "toolStrip1"
toolStrip1.Size = New System.Drawing.Size(292, 25)
toolStrip1.TabIndex = 0
toolStrip1.Text = "toolStrip1"
' The following code example demonstrates the syntax for setting
' various ToolStripComboBox properties.
'
toolStripComboBox1.AutoCompleteCustomSource.AddRange(New String() {"aaa", "bbb", "ccc"})
toolStripComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend
toolStripComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource
toolStripComboBox1.DropDownHeight = 110
toolStripComboBox1.DropDownWidth = 122
toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Standard
toolStripComboBox1.IntegralHeight = False
toolStripComboBox1.Items.AddRange(New Object() {"xxx", "yyy", "zzz"})
toolStripComboBox1.MaxDropDownItems = 9
toolStripComboBox1.MergeAction = System.Windows.Forms.MergeAction.Insert
toolStripComboBox1.Name = "toolStripComboBox1"
toolStripComboBox1.Size = New System.Drawing.Size(121, 25)
toolStripComboBox1.Sorted = True
'
' Form1
'
ClientSize = New System.Drawing.Size(292, 273)
Controls.Add(toolStrip1)
Name = "Form1"
toolStrip1.ResumeLayout(False)
toolStrip1.PerformLayout()
ResumeLayout(False)
PerformLayout()
End Sub
End Class