티스토리 뷰

http://www.wpf-tutorial.com/data-binding/introduction/

http://www.wpf-tutorial.com/data-binding/hello-bound-world/


데이터 바인딩은 두개의 data/정보 소스를 함께 엮고, 데이터의 동기화를 유지하는 일반적인 기술입니다.


TextBox의 Text 속성과 TextBlock의 값을 바인딩하는 예제입니다.

1
2
3
4
5
6
7
 <StackPanel>
        <TextBox Name="txtValue"></TextBox>
        <WrapPanel Margin="10">
            <TextBlock Text="Value : " FontWeight="Bold"></TextBlock>
            <TextBlock Text="{Binding Path = Text, ElementName=txtValue}"/>
        </WrapPanel>
    </StackPanel>
cs



{Binding Path = NameOfProperty, ElementName = name}

Path : 바인딩할 속성 (생략 가능)

ElementName : 바인딩할 속성 중에서의 name

공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함