コード例 #1
0
ファイル: MainViewModel.cs プロジェクト: oygj/TallyServer
        //Constructor
       public MainViewModel()
        {
            DataModel = new Models.SocketWrapper();

            buttonCommand = new SimpleCommand
            {
                ExecuteDelegate = x => startListening(),
                CanExecuteDelegate = y => true
            };

        }