|
@@ -15,8 +15,6 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
|
|
|
{
|
|
|
public class RegisterOKRegionViewModel : BindableBase, IDialogAware
|
|
|
{
|
|
|
- private string uuid = ServiceHelper.GetDeviceSerialNumber();
|
|
|
- private RegisterDialogViewModel RegisterDialogViewModel;
|
|
|
public IDialogService dialogs;
|
|
|
|
|
|
|
|
@@ -49,8 +47,6 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
|
|
|
private void InitString()
|
|
|
{
|
|
|
|
|
|
- Text_regisuccess = App.ServiceLoader.GetString("Text_regisuccess");
|
|
|
- Text_getstart = App.ServiceLoader.GetString("Text_getstart");
|
|
|
|
|
|
}
|
|
|
|
|
@@ -69,18 +65,9 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
|
|
|
|
|
|
|
|
|
dialogs = dialogService;
|
|
|
- RegisterGetStartCommand = new DelegateCommand(RegisterGetStart);
|
|
|
InitString();
|
|
|
}
|
|
|
|
|
|
- private void RegisterGetStart()
|
|
|
- {
|
|
|
-
|
|
|
- RegisterDialogViewModel.Close();
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
public void Close()
|
|
|
{
|
|
|
RequestClose?.Invoke(new Prism.Services.Dialogs.DialogResult(ButtonResult.Cancel));
|