2013-12-07 5 views

답변

2

Data Binding을 작성해야합니다. 다음과 같이 표시됩니다.

<Canvas Name="myCanvas" Width="200" Height="100"> 
    <Rectangle Width="{Binding ElementName=myCanvas, Path=Width}" Height="{Binding ElementName=myCanvas, Path=Height}"> </Rectangle> 
</Canvas> 
관련 문제