developer tip

WPF 바인딩에서 "{Binding Path =.}"는 무엇을 의미합니까?

optionbox 2020. 10. 17. 10:25
반응형

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”. 

CheatSheet에 직접 링크

참고 URL : https://stackoverflow.com/questions/1066262/what-does-binding-path-mean-in-wpf-binding

반응형