如何使用 wpf 从按钮上下文菜单创建简单的字体选择器?
我只想从按钮上下文菜单创建一个简单的字体选择器,因此当我右键单击该按钮时,它会弹出所有可用系统字体的列表。
I just want to create a simple font chooser from button context menu so when I right click on the button it pops-up a list of all available system fonts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://msdn.microsoft.com/en -us/library/ms771765(v=vs.85).aspx
看一下。它应该给出一个很好的例子来说明如何实现字体选择器。
http://msdn.microsoft.com/en-us/library/ms771765(v=vs.85).aspx
Have a look at that. It should give a good example of how to implement it a font selector.
这就是获取所有系统字体的方法...
然后我将为您的字体选择器设计用户控件,并使其从按钮的 MouseRightButton_Down 事件中可见。
This is how you get all system fonts...
Then I would design user control for your font chooser and make it visible from the MouseRightButton_Down event of your button.