WPF使用ContentControl控件实现区域导航,并使用Prism依赖注入优化

背景:使用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;
    }
}

-- 也就是由创建用户控件,变成调用依赖注入的用户控件

相关推荐
hao_wujing3 小时前
分布式 L2 网关下的 OVS 未知单播泛洪
分布式·wpf
Crazy Struggle7 小时前
C#+ WPF 实现蓝牙转WIFI计步上位机
c#·wpf·上位机软件
CV大法好11 小时前
WPF通过反射机制动态加载控件
visualstudio·c#·wpf
麻花20131 天前
WPF的下拉复选框多选,数据来源数据库的表
java·前端·wpf
军训猫猫头1 天前
32.失焦提示 C#例子 WPF例子
ui·c#·wpf
麻花20131 天前
WPF的一些控件的触发事件记录
wpf
one9962 天前
WPF-绑定
microsoft·c#·.net·wpf
one9962 天前
WPF 数据绑定中的通知机制及其性能考虑
c#·.net·wpf
△曉風殘月〆2 天前
WPF自定义任务栏缩略图
wpf·dwm·任务栏