예를들어 하위 UserControl 안에
public double CurrentCount { get; set; }
이런 property가 있다고 하자. 이것을 하위 View에서 보고 싶다. 그럴때는?
바인딩을 이렇게 하면 된다.
<ct:SelectPersonControl Margin="10" x:Name="SPC"/>
<TextBlock Text="{Binding Path=CurrentCount, ElementName=SPC}" />
이렇게 하면 UserControl의 CurrentCount값이 바인딩 된다.
너무 기초인가… 혹시나 하는 마음에 알아두길~
'Windows Phone 7' 카테고리의 다른 글
[wp7] ListBox 바인딩 했을 때 안에 CheckBox 체크 (0) | 2012.01.18 |
---|---|
[wp7] Isolatedstorage와 블랜드 충돌 해결법 (unable to determine application identity of the caller) (0) | 2012.01.09 |
[wp7] UserControl을 ViewModel처럼 Property Binding (0) | 2012.01.03 |
[wp7] ListBox 선택했을때 Style 바꾸기 (0) | 2011.12.28 |
[wp7] DataTemplateSelector로 ListBox의 item을 유동적으로 바꾸기 (0) | 2011.12.22 |