将值绑定到 XAML 中控件的绝对位置
有没有办法使用 XAML 将值绑定到控件的绝对位置?
我有一个 Line
< /a> 我想在两个 我的应用程序中的按钮
。我认为将 Line
的起点绑定到 Button
的位置将是实现此目的的最简单方法,使用 RelativeSource
不知何故。
Is there a way to bind a value to the absolute position of a control using XAML?
I have a Line
element that I would like to be drawn between two Button
s in my application. I was thinking that binding the starting point of the Line
to the position of the Button
would be the easiest way to make this happen, using RelativeSource
somehow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来你想要这样的东西:
在页面中使用此 MyButton 代替 Button,
编辑:
如果你想在两个控件之间画线
不要使用上面的代码示例,而是直接在您的页面中尝试:
希望这有帮助!
It seems you want something like this:
use this MyButton in your pages in place of Button,
Edit:
if you want to draw line between two controls
don't use above code sample but try this directly in your page:
Hope this helps!
定义一个模板,将按钮和线条放置在您喜欢的正确位置,然后在按钮的位置使用此模板。
Define a Template with Button and Line positioned at right places wherever you like and then use this Template at the place of Button.