Simple data bind

This commit is contained in:
2023-07-10 16:45:00 +09:00
parent 7f8f0d4fc7
commit 9014a94372
15 changed files with 600 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
using DataBindByINotifyPropertyChangedSample.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataBindByINotifyPropertyChangedSample.ViewModel
{
internal class UserViewModel : User
{
public UserViewModel()
{
this.FirstName = "Gildong";
this.LastName = "Hong";
}
}
}