我正在WPF画布中创建一个折线,假设根据我的模型中发生的计算点击按钮时更新它的位置。我正在使用MVVM模式。
我的XAML代码:
<Grid>
<StackPanel>
<Button Margin="10" Command="{Binding Path=RunAnalysisCmd}">Rune analysis!</Button>
<Canvas>
<Polyline Points="{Binding ModelPathPoints, UpdateSourceTrigger=PropertyChanged}" Stroke="Blue" StrokeThickness="2"/>
</Canvas>
</StackPanel>
</Grid>
在我的ViewModel中,我有一个PointCollection属性,其中存储了路径点。
private PointCollection _modelPathPoints = new PointCollection();
public PointCollection ModelPathPoints
{
get { return _modelPathPoints; }
set
{
_modelPathPoints = value;
NotifyPropertyChanged("ModelPathPoints");
}
}
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(String info)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(info));
}
}
方法RunAnalysis运行fin,我使用Consol输出测试了它。我的问题是,当PointCollection中的点发生变化时画布不会改变。
public void RunAnalysis()
{
double angle = 0;
for (int i = 0; i < 1000; i=i+10)
{
Model.TranslateModelEdgeNodes(i, i);
Model.RotateModelEdgeNodes(angle);
angle = angle + 0.1;
AddModelPointsToPointCollection();
System.Threading.Thread.Sleep(500);
}
}
public void AddModelPointsToPointCollection()
{
//ModelPathPoints.Clear();
PointCollection modelPathPoints = new PointCollection();
for (int i = 0; i < Model.ModelEdgeNodes.Count(); i++)
{
modelPathPoints.Add(new Point( XXX, XXX )) // Not important what XXX, XXX is
}
modelPathPoints.Add(new Point(XXX, XXX )); // Not important what XXX, XXX is
ModelPathPoints = modelPathPoints;
}
有没有人看到问题?
答案 0 :(得分:0)
为了避免想知道Thread.Sleep是否干扰了UI做的事情,为什么不使用点击事件,这会使它做一次应该明显的迭代?
在该属性设置中,您可以验证每次点击是否分配了它,验证了所分配点的值,以及PropertyChanged事件是否正在发生。
哦 - 我假设您的视图模型实现了INotifyPropertyChanged,并且您在上面的代码中未显示的某个地方为PropertyChanged事件分配了一个实际值?
如果有帮助,请告诉我 - 如果没有,我会创建一个项目并为您检查。最好的。