コード例 #1
0
ファイル: MainViewModel.cs プロジェクト: DarkDrake132/WeSplit
        public MainViewModel()
        {
            SettingCommand = new RelayCommand <object>((p) =>
            {
                return(true);
            }, (p) =>
            {
                SettingScreen ss = new SettingScreen();
                ss.ShowDialog();
            });

            CreateJourneyCommand = new RelayCommand <object>((p) => { return(true); }, (p) =>
            {
                CreateJourneyScreen cjs = new CreateJourneyScreen();
                cjs.ShowDialog();
            });
        }