背景:使用ContentControl控件实现区域导航是有Mvvm框架的WPF都能使用的,不限于Prism
主要是将ContenControl控件的Content内容在ViewModel中切换成不同的用户控件
下面是MainViewModel:
cs
private object body;
public object Body
{
get { return body; }
set { body = value; RaisePropertyChanged(); }
}
public DelegateCommand<string> OpenCommand { get; set; }
public MainWindowViewModel()
{
OpenCommand = new DelegateCommand<string>(obj =>
{
Body = obj switch
{
"ViewA" => new ViewA(),
"ViewB" => new ViewB(),
"ViewC" => new ViewC(),
_ => Body
};
});
}
上面是有Mvvm框架就行了,每次打开新的模块就创建一个用户控件对象
下面是使用Prism框架的导航实现会方便一些
1.首先在App.xaml.cs中注入用户控件的依赖
2.ContentControl中的Content修改为:
XML
<ContentControl Grid.Row="1" prism:RegionManager.RegionName="ContentRegion" />
3.MainWindowViewModel变成:
cs
public class MainWindowViewModel : BindableBase
{
private readonly IRegionManager regionManager;
public DelegateCommand<string> OpenCommand { get; set; }
public MainWindowViewModel(IRegionManager regionManager)
{
OpenCommand = new DelegateCommand<string>(obj => { regionManager.Regions["ContentRegion"].RequestNavigate(obj); });
this.regionManager = regionManager;
}
}
-- 也就是由创建用户控件,变成调用依赖注入的用户控件