0

所以我有一个正在更新的可观察集合,我可以看到值已经改变,但 UI 没有改变。这是我所拥有的

public static class GeoLocations
{

    public static ObservableCollection<Station> _locations = new ObservableCollection<Station>();
    public static ObservableCollection<Station> locations
    {
        get { return _locations; }
        set 
        { 
            _locations = value;      
        }
    }
}

public class Station
{
    public int StationNumber { get; set; }
    // Bunch more properties here ...
}

然后我有一个类为另一个线程中的所有属性生成随机数。我知道它会改变它们,因为当我将鼠标悬停在我正在使用的图表中的项目上时,我看到它正在更新。但是图表本身没有更新。假设第一个数字是 1.6。然后更新到 1.4 0.5 1.2... 图表保持在 1.6。

我使用的图表是 Infragistics XamDataChart。我怀疑问题出在我实施课程的方式上。我有更多的 UI 需要更新,而不仅仅是图表,所以我希望一旦我弄清楚这一点,我就可以在这里完成这些工作。

这是我的 XamDataChart 的 xaml

<ig:XamDataChart Style="{StaticResource BarChartStyle}" Grid.Row="1" Grid.Column="1">

        <ig:XamDataChart.Axes>
            <ig:NumericYAxis x:Name="YAxis" MinimumValue="0" Interval="0.4" Label="{}{}" FontSize="8" MaximumValue="1.7" MajorStroke="#FF2C2C2C" Foreground="White" BorderBrush="White" FontWeight="Bold">
                <ig:NumericYAxis.LabelSettings>
                    <ig:AxisLabelSettings Extent="23" Foreground="White"/>
                </ig:NumericYAxis.LabelSettings>
            </ig:NumericYAxis>
            <ig:CategoryXAxis x:Name="XAxis" 
                              ItemsSource="{Binding}" 
                              Label="{}{IndexNum}" 
                              Interval="1" 
                              MajorStroke="Black" 
                              Foreground="White" 
                              BorderBrush="White"
                              DataContextChanged="CollectionChanged">
                <ig:CategoryXAxis.LabelSettings>
                    <ig:AxisLabelSettings Extent="17" VerticalAlignment="Bottom" FontSize="11" Foreground="White"/>
                </ig:CategoryXAxis.LabelSettings>
            </ig:CategoryXAxis>
        </ig:XamDataChart.Axes>
        <ig:XamDataChart.Series>

            <ig:ColumnSeries Style="{StaticResource ColumnSeriesStyle}" x:Name="Series1" ValueMemberPath="StationNumber "  XAxis="{Binding ElementName=XAxis}"  YAxis="{Binding ElementName=YAxis}" Brush="DodgerBlue" Outline="Black">

            </ig:ColumnSeries>
        </ig:XamDataChart.Series>
    </ig:XamDataChart>

代码背后

XAxis.ItemsSource = GeoLocations.locations;
Series1.ItemsSource = GeoLocations.locations;
4

1 回答 1

3

如果您的对象的属性正在更改Station,您需要在其上实现INotifyPropertyChanged,并在您的属性设置器中触发PropertyChanged事件。当您的其他线程更改属性时,似乎没有通知图表对象。只有在ObservableCollection添加或删除 Station 对象时才会更新图表,而不是在它们的属性更改时。

您说当您将鼠标悬停在图表上时,您会看到更新的值,但这可能是因为图表实际上正在调用属性上的 getter 来显示它,所以您会在那里看到更新的值(但我在推测这个)。

于 2013-06-30T17:45:25.817 回答