ToolStripButton 是否有等效的 WPF 工具?
我正在学习 WPF,并一直在尝试创建工具条。是否有 WinForms ToolStripButton 的直接等效项,或者只是添加普通按钮并格式化它的正确使用方法?
我发现 Microsoft 有一个页面,其中列出了 WinForm 控件及其 WPF 等效项此处< /a> 但这没有提到工具条按钮。
I'm learning WPF and have been trying to create a toolstrip. Is there a direct equivalent of the WinForms ToolStripButton or is the correct way of use just to add a normal button and format it?
I've found that Microsoft have a page that lists WinForm controls and their WPF equivalents here but that doesn't mention the toolstripbutton.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将按钮放入
工具栏
它会改变按钮的样式,使它们看起来像工具栏。看起来像这样:
如果您想要按钮中的图像,则必须执行修改按钮的内容。
You can just put buttons inside a
ToolBar
and it will change the style of the buttons to make them look like a toolbar.Looks like this:
If you want images in the buttons, you have to do the normal thing of modifying the content of the button.