이제 WPF로 데이터를 바인딩합니다.
대충 입문 하다
public class TestClass : INotifyPropertyChanged
{
public String Number{get;set;}
}
this.DataContext = TestClass;
<TextBox Text="{Binding Path=Number}"/>
이렇게 꺾은 느낌의 MVM.여기서 꼭 전하고 싶은 이야기.
이름 인덱스도 사용 가능
public class TestClass : INotifyPropertyChanged
{
public Dictionary<string,string> Strings { get; set; } = new Dictionary<string, string>();
public TestClass()
{
Strings.Add("test","test1");
}
}
this.DataContext = TestClass;
<TextBox Text="{Binding Path=Strings[test]}"/>
더블 따옴표 없이 쓰면 돼!조금만 징징거리면 안 나오니까 써 봐.
Reference
이 문제에 관하여(이제 WPF로 데이터를 바인딩합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/shuzabu/articles/6347f8369e67f97b8470텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)