ToolStripSplitButton 与 ToolStripDropDownButton

发布于 2024-07-16 20:36:01 字数 470 浏览 5 评论 0原文

ToolStripSplitButtonToolStripDropDownButton? (Visual Studio 2008)(也在此处询问,而不是在SO )。 乍一看,它们似乎大同小异。 尤其是在设计师身上。

What is the difference between ToolStripSplitButton and ToolStripDropDownButton?
(Visual Studio 2008) (Also asked here, not on SO). At first blush, they seem to be largly the same; especially in the designer.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

忱杏 2024-07-23 20:36:01

拆分按钮是带有下拉菜单的常规按钮。 如果单击按钮部分上的拆分按钮,它的作用就像普通按钮一样。 如果您在菜单部分单击它,则会下拉菜单。 例如,大多数浏览器上的“后退”按钮都是这种类型的按钮。

下拉按钮,单击时会下拉菜单。 除了显示下拉菜单之外,它们没有(也不应该有)直接关联的功能。 它们就像菜单中最上面的项目:单击它们时除了向您显示更多项目外不会执行任何操作。

Split buttons are regular buttons with a drop-down menu attached to them. If you click a split button on the button part, it acts like a regular button. If you click it on the menu part, a menu drops down. The "back" button on the majority of browsers are this type of button, for example.

Drop-down buttons, when clicked, drop down a menu. They don't have (and shouldn't have) directly associated functionality beyond displaying the drop-down menu. They are like the topmost items in a menu: they don't do anything when clicked other than to show you more items.

橘寄 2024-07-23 20:36:01

引用自此处

ToolStripSplitButton 视为
常规按钮连接到
ToolStripDropDownButton

当您点击
ToolStripDropDownButton Click
事件总是触发并且下拉
显示列表。

当您点击按钮一侧时
ToolStripSplitButton Click
事件触发但下拉列表是
不显示,如果您单击
拆分按钮的下拉侧
显示下拉列表,但
Click 事件不会触发。

在 Internet Explorer 6 中,“邮件”按钮
其作用类似于 ToolStripDropDown 按钮
而“编辑”按钮的作用就像一个
ToolStripSplitButton - 即,如果您
单击它刚刚启动的图像
编辑器会认为如果您单击
箭头提供了一个下拉列表
编辑。

从视觉上看,当您将鼠标悬停在
光标悬停在按钮上是
ToolStripSplitButton 将显示实线
将图像划分为垂直线
下拉箭头(两侧
“分裂”)而
ToolStripDropDown 按钮将不会显示
一条垂直线。

quoted from here

Think of a ToolStripSplitButton as a
regular button joined to a
ToolStripDropDownButton.

When you click on a
ToolStripDropDownButton the Click
event always fires and the drop down
list is displayed.

When you click on the button side of
the ToolStripSplitButton the Click
event fires but the drop down list is
not displayed and if you click on the
drop down side of the split button the
drop down list is displayed but the
Click event does not fire.

In Internet Explorer 6 the Mail button
acts like a ToolStripDropDown button
whereas the Edit button acts like a
ToolStripSplitButton - i.e., if you
click on the image it just fires up
the editor wheras if you click on the
arrow it offers a drop down list of
editors.

Visually, the cue when you hover the
cursor over the button is that a
ToolStripSplitButton will show a solid
vertical line dividing the image from
the drop down arrow (the two sides of
the 'split') whereas the
ToolStripDropDown button will not show
a vertical line.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文