07Prism WPF 入门实战 - Dialog

概要

Prism中的dialog(对话框)实际上是我们应用程序经常用到得一个功能,类如:Show、Show Dialog。可以弹出一个我们指定得窗口,仅此而已那么在Prism当中,Dialog指的什么?Prism提供了一组对话服务,封装了常用的对话框组件的功能,例如:IDialogAware(注册对话及使用对话)打开对话框传递参数/关闭对话框返回参数回调通知对话结果。

  • 应用场景:处理一些公共业务,例如正在编辑文章内容这时候如果要关闭程序或者打开其他页面需要提示。

  • 在Prism体系中的应用分为,1.自定义dialog窗体 2.将写好的dialog注入到App.xaml.csI中的ContainerRegistry里。3.业务ViewModel的构造函数中获取引用进行调用

软谋的.NET全套架构视频,大多视频包含源码,录制时间(初中级是2019~2020高级架构是2020~2021),原价6499,现仅需299元。这个活动周三推出后,受到热捧,仅一个技术群就几十人抢购!最后几天活动,目录和介绍:点击下方超链接查看

太牛了!三天时间几百人加我咨询这份.NET架构视频

需要的加微zls20210502,进技术群的加微mm1552923,备注进群

详细内容

我们先来看看它源码中的定义:

namespace Prism.Services.Dialogs
{
    //
    // 摘要:
    //     Interface that provides dialog functions and events to ViewModels.
    public interface IDialogAware
    {
        //
        // 摘要:
        //     The title of the dialog that will show in the window title bar.
        string Title
        {
            get;
        }

        //
        // 摘要:
        //     Instructs the Prism.Services.Dialogs.IDialogWindow to close the dialog.
        event Action RequestClose;

        //
        // 摘要:
        //     Determines if the dialog can be closed.
        //
        // 返回结果:
        //     If true the dialog can be closed. If false the dialog will not close.
        bool CanCloseDialog();

        //
        // 摘要:
        //     Called when the dialog is closed.
        void OnDialogClosed();

        //
        // 摘要:
        //     Called when the dialog is opened.
        //
        // 参数:
        //   parameters:
        //     The parameters passed to the dialog.
        void OnDialogOpened(IDialogParameters parameters);
    }
}

解读一下IDialogAware接口中内容各有什么作用。

  • (1)string Title{get;} //将显示在窗口标题栏中的对话框的标题。

  • (2)event Action RequestClose;//指示 Prism.Services.Dialogs.IDialogWindow 关闭对话框。

  • (3)bool CanCloseDialog();//确定是否可以关闭对话框。

  • (4)void OnDialogClosed();//关闭对话框时触发

  • (5)void OnDialogOpened(IDialogParameters parameters);//打开对话框时触发, parameters:传递给对话框的参数。

应用

首先创建好Dialog的窗体的.xaml和窗体处理逻辑的.cs文件,尽量创建在“公共库”里。

07Prism WPF 入门实战 - Dialog_第1张图片

.Xaml文件内容


    
        
            
            
            
        
        
        
            
            
        
    

.cs文件内容

namespace Wemail.Controls.CustomContorls
{
    public class MessageDialogControl : BindableBase , IDialogAware
    {
        private DelegateCommand _getMessageCommand;
        private DelegateCommand _cancelMessageCommand;
        private string _messageContent;

        public string MessageContent 
        { 
            get => _messageContent;
            set 
            {
                _messageContent = value;
                SetProperty(ref _messageContent, value);
            }
        }

        /// 
        /// 确定按钮
        /// 
        public DelegateCommand GetMessageCommand 
        {
            get => _getMessageCommand = new DelegateCommand(() => 
            {
                var parameter = new DialogParameters();
                parameter.Add("MessageContent", MessageContent);
                RequestClose?.Invoke(new DialogResult(ButtonResult.OK, parameter));
            });
        }

        /// 
        /// 窗体关闭按钮
        /// 
        public DelegateCommand CancelMessageCommand 
        { 
            get => _cancelMessageCommand = new DelegateCommand(() => 
            {
                RequestClose?.Invoke(new DialogResult(ButtonResult.Cancel));
            });
        }

        public string Title => "Message";
        public event Action RequestClose;

        /// 
        /// 允许用户手动关闭当前窗口
        /// 
        /// 
        public bool CanCloseDialog()
        {
            //根据业务需要来控制是否允许手动关闭
            return true;
        }

        /// 
        /// 关闭dialog的操作
        /// 
        /// 
        public void OnDialogClosed()
        {
            //当关闭dialog的时候会触发的回调,一般用来打日志或者用于用户行为记录等场景
        }

        /// 
        /// dialog接收参数传递
        /// 
        /// 
        /// 
        public void OnDialogOpened(IDialogParameters parameters)
        {
            //接受viewmodel打开dialog时传递的参数内容
            var parameterContent = parameters.GetValue("juster");
        }
    }
}

注册dialog

App.xaml.cs文件使用如下:

protected override void RegisterTypes(IContainerRegistry containerRegistry)
    {
        var factory = new NLog.Extensions.Logging.NLogLoggerFactory();
        _logger = factory.CreateLogger("NLog");
        //注入到Prism DI容器中
        containerRegistry.RegisterInstance(_logger);

        //注册Dialog窗体
        containerRegistry.RegisterDialog();
    }

ViewModel中使用

namespace Wemail.ViewModels
{
    public class MainWindowViewModel : BindableBase
    {
        private string _title = "Prism Application";

        //Region管理对象
        private IRegionManager _regionManager;
        private IModuleCatalog _moduleCatalog;
        private IModuleInfo _moduleInfo;
        private ILogger _logger;
        private IDialogService _dialogService;
        private ObservableCollection _modules;
        private DelegateCommand _loadModulesCommand;
        private DelegateCommand _showDialogCommand;
        
        public IView View { get; set; }

        public string Title
        {
            get { return _title; }
            set { SetProperty(ref _title, value); }
        }

        public ObservableCollection Modules
        {
            get => _modules ?? (_modules = new ObservableCollection());
        }

        public DelegateCommand LoadModulesCommand { get => _loadModulesCommand = new DelegateCommand(InitModules); }

        public IModuleInfo ModuleInfo 
        { 
            get 
            {
                return _moduleInfo; 
            }

            set 
            {
                _moduleInfo = value;
                Navigate(value);
            }
        }

        public DelegateCommand ShowDialogCommand { get => _showDialogCommand = new DelegateCommand(ShowDialogAction); }

        /// 
        /// 调用dialog
        /// 
        private void ShowDialogAction()
        {
            //需要传递给对话框处理的内容参数
            DialogParameters dialogParameters = new DialogParameters();
            dialogParameters.Add("juster","nihao");
            //打开dialog的时候传递
            _dialogService.ShowDialog("MessageDialogView", dialogParameters, (r) => 
            {
                var result = r.Result;
                if (result == ButtonResult.OK) 
                {
                    var parameter = r.Parameters.GetValue("MessageContent");
                }
            });
        }

        public MainWindowViewModel(IRegionManager regionManager, IModuleCatalog moduleCatalog,ILogger logger,IDialogService dialogService)
        {
            _dialogService = dialogService;
            _logger = logger;
            _regionManager = regionManager;
            _moduleCatalog = moduleCatalog;
        }

        public void InitModules() 
        {
            var dirModuleCatalog = _moduleCatalog as DirectoryModuleCatalog;
            Modules.AddRange(dirModuleCatalog.Modules);
        }

        private void Navigate(IModuleInfo info) 
        {
            var paramete = new NavigationParameters();
            //任意定义key,value。导航到的视图按照约定key获取value即可。
            paramete.Add($"{ info.ModuleName }", DateTime.Now.ToString());
            _regionManager.RequestNavigate("ContentRegion", $"{ info.ModuleName }View", paramete);
        }
    }
}

运行效果

07Prism WPF 入门实战 - Dialog_第2张图片

关闭对话框之后viewmodel接收到的参数

07Prism WPF 入门实战 - Dialog_第3张图片

窗体被打开时接收到viewmodel的参数

07Prism WPF 入门实战 - Dialog_第4张图片

技术群:添加小编微信并备注进群

小编微信:mm1552923   

公众号:dotNet编程大全      

你可能感兴趣的:(java,python,spring,linux,编程语言)