반응형
WPF 바인딩에서 "{Binding Path =.}"는 무엇을 의미합니까?
{Binding Path=.}
WPF 바인딩에서 무엇을 의미합니까?
어떤 사람들이 그것을 사용하는 것을 보았지만 설명을 찾을 수 없습니다.
바인딩 구문에 다른 특수 기호가 {Binding /}
있습니까 (제외 )?
이것은 현재 소스에 바인딩하는 약어입니다. 자세한 내용은 여기를 참조 하십시오 .
나는이 WPF Binding CheatSheet 를 몇 달 전에 발견했고 특히 WPF를 배우는 모든 사람들에게 매우 유용하다는 것을 알게되었습니다. 그 안에 철자 오류가 있지만 여전히 꽤 좋습니다.
다음은 작은 발췌문입니다 (표 형식이 있어야 함).
Basic Binding
{Binding} Bind to current DataContext.
{Binding Name} Bind to the “Name” proeprty of the current DataContext.
{Bindind Name.Length} Bind to the Length property of the object in the Name property of the current DataContext.
{Binding ElementName=SomeTextBox, Path=Text} Bind to the “Text” property of the element XAML element with name=”SomeTextBox” or x:Name=”SomeTextBox”.
참고 URL : https://stackoverflow.com/questions/1066262/what-does-binding-path-mean-in-wpf-binding
반응형
'developer tip' 카테고리의 다른 글
AngularJS 테스트에서 _servicename_의 밑줄은 무엇을 의미합니까? (0) | 2020.10.17 |
---|---|
Go 빌드 빌드는 무엇입니까? (0) | 2020.10.17 |
jQuery 플러그인을 확장하는 가장 좋은 방법 (0) | 2020.10.17 |
Android 데이터베이스 암호화 (0) | 2020.10.17 |
C #은 System.Type을 Generic 매개 변수로 사용합니다. (0) | 2020.10.17 |