1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- using PDF_Master.DataConvert;
- using Prism.Commands;
- using Prism.Mvvm;
- using Prism.Regions;
- using Prism.Services.Dialogs;
- using System;
- using System.Collections.Generic;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Data;
- namespace PDF_Master.ViewModels.Dialog.ServiceDialog
- {
- public class IAPCompareDialogViewModel : BindableBase,IDialogAware
- {
-
-
- public string Title => "";
- public event Action<IDialogResult> RequestClose;
- #region 文案
- private string _Text_Signup = "";
- public string Text_Signup
- {
- get { return _Text_Signup; }
- set
- {
- SetProperty(ref _Text_Signup, value);
- }
- }
- private void InitString()
- {
- //Text_Signup = App.ServiceLoader.GetString("Text_Signup");
- }
- #endregion
- public bool CanCloseDialog()
- {
- return true;
- }
- public void OnDialogClosed()
- {
-
- }
- public void OnDialogOpened(IDialogParameters parameters)
- {
-
- }
- public DelegateCommand GoLoginCommand { get; set; }
- public IAPCompareDialogViewModel(IRegionManager regionManager, IDialogService dialogService)
- {
-
- //GoLoginCommand = new DelegateCommand(GoLogin);
- InitString();
- }
- }
- }
|