1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-25 14:46:08 +03:00
ProxySU/ProxySuper.Core/ViewModels/SecondViewModel.cs
2021-05-08 18:52:59 +08:00

31 lines
735 B
C#

using MvvmCross.Commands;
using MvvmCross.Navigation;
using MvvmCross.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProxySuper.Core.ViewModels
{
public class SecondViewModel : MvxViewModel
{
private readonly IMvxNavigationService _navigationService;
public SecondViewModel(IMvxNavigationService navigationService)
{
_navigationService = navigationService;
}
public string Message { get; set; } = "Hello world!";
public IMvxCommand BackCommand => new MvxCommand(Back);
public void Back()
{
_navigationService.Close(this);
}
}
}