我是WPF和MVVM的新手。目前正在使用MVVM模式构建WPF应用程序,但很快就遇到了多个MVVM。
基本上我在MainWindow上有一个MainWindow和一个UserControl。它是一个简单的UserControl,它只包含一个Image Control和一个滚动条。如下图所示:
<UserControl x:Class="AutomaticContourEvaluation_WURO_WPF.Views.TwoDImageControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:AutomaticContourEvaluation_WURO_WPF.Views"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Image Grid.Column="0" Source="{Binding Path=CurrentSlice}" x:Name="sliceDisplayControl" />
<ScrollBar Grid.Column="1" Minimum="0" Maximum="{Binding Path=NumberOfSlices, FallbackValue=10}" Value="{Binding Path=SliceIndex, Mode=TwoWay, FallbackValue=0}" x:Name="sliceSelectionScrollBar" Margin="0,0,0,0"/>
</Grid>
对应的ViewModel旨在:
internal class TwoDSliceViewModel : INotifyPropertyChanged
{
private List<BitmapImage> _imageSlices;
private int _sliceIndex = 0;
public BitmapImage CurrentSlice { get { return _imageSlices[SliceIndex]; } }
public int NumberOfSlices { get { return _imageSlices.Count; } }
public int SliceIndex
{
get
{
return _sliceIndex;
}
set
{
if (_sliceIndex != value)
{
_sliceIndex = value;
NotifyPropertyChanged("SliceIndex");
NotifyPropertyChanged("CurrentSlice");
}
}
}
public TwoDSliceViewModel()
{
BitmapImage demoImage = new BitmapImage();
demoImage.UriSource = new Uri("2Ddemo.jpg", UriKind.Relative);
demoImage.CacheOption = BitmapCacheOption.OnLoad;
if (_imageSlices == null)
{
_imageSlices = new List<BitmapImage>();
}
_imageSlices.Add(demoImage);
}
public TwoDSliceViewModel(List<BitmapImage> imageSlices)
{
_imageSlices = imageSlices;
}
public void updateImageSlices(List<BitmapImage> images)
{
_imageSlices = images;
_sliceIndex = 0;
NotifyPropertyChanged("CurrentSlice");
NotifyPropertyChanged("NumberOfSlices");
NotifyPropertyChanged("SliceIndex");
}
#region INotifyPropertyChanged Methods
public event PropertyChangedEventHandler PropertyChanged;
public void NotifyPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
在我的MainWindowViewModel中,有一个TwoDSliceViewModel实例:
internal class MainWindowViewModel:INotifyPropertyChanged
{
...
private TwoDSliceViewModel _twoDSliceViewModel = new TwoDSliceViewModel();
public TwoDSliceViewModel TwoDModuleViewModel { get { return _twoDSliceViewModel; } }
...
}
为了获得UserControl(TwoDSliceControl)工作的绑定,我在MainWindow.xaml中设置了UserControl的DataContext,如下所示:
<Window ...>
<Window.DataContext>
<viewModel:MainWindowViewModel />
</Window.DataContext>
...
<control:TwoDImageControl x:Name="twoDSliceImageControl" DataContext="{Binding Path=TwoDModuleViewModel}" />
...
</Window>
我的UserControl(TwoDSliceControl)是特定于ViewModel的,所以我选择这种方式而不是使用依赖属性。但绑定失败了。您可以在我的代码中看到我在实例化TwoDSliceViewModel时创建了一些演示数据,但这些虚拟数据不会显示出来。
我使用了断点来发现在MainWindow成功初始化之后,TwoDSliceControl的DataContext设置得很好。但TwoDSliceControl中ImageControl的Source属性和TwoDSliceControl中ScrollBar的MaxValue属性为null。
我觉得,这行XAML代码:
<control:TwoDImageControl x:Name="twoDSliceImageControl" DataContext="{Binding Path=TwoDModuleViewModel}" />
首先初始化twoDSliceImageControl,然后设置twoDSliceImageControl.DataContext属性。初始化时,twoDSliceImageControl.DataContext为null,因此twoDSliceImageControl中的Binding失败。虽然在初始化之后,两个DSliceImageControl.DataContext设置得很好,但UserControl中的绑定不会刷新,并且它们仍然是空的。
解决此问题的任何解决方法?已经坚持了一段时间,并没有找到合适的解决方案。谢谢你们!
答案 0 :(得分:0)
谢谢大家。我终于找到了。 似乎这些代码行存在一些问题:
BitmapImage demoImage = new BitmapImage();
demoImage.UriSource = new Uri("2Ddemo.jpg", UriKind.Relative);
demoImage.CacheOption = BitmapCacheOption.OnLoad;
相反,我需要使用BitmapImage.BeginInit()和BitmapImage.EndInit()包装BitmapImage创建。
所以工作代码是:
BitmapImage demoImage = new BitmapImage();
demoImage.BeginInit();
demoImage.UriSource = new Uri("2Ddemo.jpg", UriKind.Relative);
demoImage.CacheOption = BitmapCacheOption.OnLoad;
demoImage.EndInit();
实际上绑定并没有错!