0

我有一个绑定到图表控件(第 3 方 WPF 控件)的 TextBox。

当我将鼠标悬停在图表上时,文本框会显示图表 X 轴值。

现在我有另一个图表。我想将同一个文本框与此图表绑定,以便当我将鼠标悬停在任何图表上时,来自各自的数据显示在文本框中。

我在 WPF 中经历了多个绑定,但不确定是否可以在我的场景中使用。

任何帮助,将不胜感激。

4

1 回答 1

0

我没有你的图表控制(不管它是什么),所以我只能模拟正在发生的事情。

在此示例中,我有两个滑块,每个都绑定到 SAME 文本框,但仅用于推送值,我相信这OneWayToSource就是您所需要的。

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    Title="MainWindow" Height="350" Width="525">


<StackPanel>
    <Slider Value="{Binding ElementName=Output, Path=Text, Mode=OneWayToSource}"/>
    <Slider Value="{Binding ElementName=Output, Path=Text, Mode=OneWayToSource}"/>
    <TextBlock Name="Output"/>
</StackPanel>
</Window>
于 2012-09-25T20:49:40.507 回答