使用 min(width, height)/2 作为半径在 WPF 中绘制圆
如何使用 min(width, height)/2
作为半径在 WPF 中(无代码隐藏)绘制圆?
How I can draw a circle in WPF (without code-behind) using min(width, height)/2
as radius?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在纯 XAML 中执行此操作,只需对值使用 Binding 即可。您还必须确保所有内容都已命名
you can do it in pure XAML you just need to use Binding for the values. You also have to make sure that everything is named
宽度和高度从哪里来?圆形的 XAML 示例如下:
圆形只是一个椭圆,其中高度 = 宽度。
Where does width and height come from? Example XAML for a circle is:
A circle is just an Ellipse where Height = Width.