解决方法
你的问题有点不清楚,但我想你会问如何绑定附加属性Canvas.Left并在TextBox中显示它.我假设你想要它而不是TextBox的控件.
<Canvas> <TextBox x:Name="textBox" Text="{Binding ElementName=button,Path=(Canvas.Left)}" /> <Button x:Name="button" Content="Press me" /> </Canvas>
请注意附加属性周围的括号.
编辑:
要在代码中执行等效操作,请使用以下命令:
Binding binding = new Binding(); binding.Source = button; binding.Path = new PropertyPath(Canvas.LeftProperty); textBox.SetBinding(TextBlock.TextProperty,binding);