public CommandPage()
        {
            InitializeComponent();

            var p = new PersonCommandViewModel()
            {
                FirstName = "Tadafumi",
                LastName = "Iriya",
                Age = 17,
            };

            this.DataContext = p;
        }
Example #2
0
        public CommandPage()
        {
            InitializeComponent();

            var p = new PersonCommandViewModel()
            {
                FirstName = "Tadafumi",
                LastName  = "Iriya",
                Age       = 17,
            };

            this.DataContext = p;
        }