如何使用代码向 inkcanvas 添加文本?
我想在 C# 代码(而不是 Xaml)中使用 WPF 在 InkCanvas 上添加一些文本(如标签)。
怎么可能? 谢谢 乔纳森
I would like to add some text (like a label) on a InkCanvas with WPF in C# code (not Xaml).
How is it possible ?
thanks
Jonathan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你可以做这样的事情。 (有关 SetTop、SetLeft,请参阅 MSDN 文档)
You can do something like this. (See MSDN docs for SetTop, SetLeft)
尝试实现自定义 Stroke 类并使用 Drawingcontext.DrawString 方法进行相同的操作。
Try to implement a custom Stroke class and use Drawingcontext.DrawString method for the same.
您可以在以下位置获取 mouseDownPos:
这是一个简单的代码,您可以在程序中使用它。
you can get mouseDownPos in :
This is a simple code that you can use it in your program.
有一个常规的 Children 属性:
http://msdn.microsoft.com/ en-us/library/system.windows.controls.inkcanvas.children.aspx
查看示例以获取代码示例
There is a regular Children property:
http://msdn.microsoft.com/en-us/library/system.windows.controls.inkcanvas.children.aspx
Check the examples for a code example