本文整理汇总了VB.NET中System.Windows.Forms.ToolStripDropDown.Show方法的典型用法代码示例。如果您正苦于以下问题:VB.NET ToolStripDropDown.Show方法的具体用法?VB.NET ToolStripDropDown.Show怎么用?VB.NET ToolStripDropDown.Show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.ToolStripDropDown 的用法示例。
在下文中一共展示了ToolStripDropDown.Show方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的VB.NET代码示例。
示例1:
' This method calls the ToolStripDropDown control's Show
' method to display the ContextMenuStrip in its
' default location.
Private Sub showButton_Click(sender As Object, e As EventArgs) Handles showButton.Click
Me.contextMenuStrip1.Show()
End Sub
开发者ID:VB.NET开发者,项目名称:System.Windows.Forms,代码行数:6,代码来源:ToolStripDropDown.Show
示例2:
' This method calls the ToolStripDropDown control's Show
' method to display the ContextMenuStrip at a fixed point.
Private Sub showAtPointButton_Click(sender As Object, e As EventArgs) Handles showAtPointButton.Click, button2.Click
Me.contextMenuStrip1.Show(23, 55)
End Sub
开发者ID:VB.NET开发者,项目名称:System.Windows.Forms,代码行数:5,代码来源:ToolStripDropDown.Show
示例3:
' This method calls the ToolStripDropDown control's Show
' method to display the ContextMenuStrip relative to the
' origin of the form.
Private Sub showRelativeButton_Click(sender As Object, e As EventArgs)
Me.contextMenuStrip1.Show(Me.Location, Me.dropDownDirection)
End Sub
开发者ID:VB.NET开发者,项目名称:System.Windows.Forms,代码行数:6,代码来源:ToolStripDropDown.Show
示例4: CType
' This method calls the ToolStripDropDown control's Show
' method to display the ContextMenuStrip relative to the
' owning control.
Private Sub button1_MouseUp(sender As Object, e As MouseEventArgs) Handles button1.MouseUp
Dim c As Control = CType(sender, Control)
If e.Button = Windows.Forms.MouseButtons.Right Then
Me.contextMenuStrip1.Show(c, e.Location, Me.dropDownDirection)
End If
End Sub
开发者ID:VB.NET开发者,项目名称:System.Windows.Forms,代码行数:10,代码来源:ToolStripDropDown.Show
注:本文中的System.Windows.Forms.ToolStripDropDown.Show方法示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论