v9.0.2016.0413   去掉模型解析器自动修正表名字段名的功能
nnhy authored at 2016-04-13 14:42:30
398.00 B
X
using System;
using System.Windows.Input;

using Xamarin.Forms;

namespace MobileApp.ViewModels
{
    public class AboutViewModel : BaseViewModel
    {
        public AboutViewModel()
        {
            Title = "About";

            OpenWebCommand = new Command(() => Device.OpenUri(new Uri("https://xamarin.com/platform")));
        }

        public ICommand OpenWebCommand { get; }
    }
}