종속성 속성값 할당
[객체명].setValue([종속성 속성 형식],[데이터 형식에 맞는 종속성] ]
testRect.SetValue(Canvas.leftPropot, 10.0)
종속성 속성값 불러오기
[객체명].GetValue([종속성 속성형식]
testRect.GetValue(Canvax.topProperty);
ex)
<Rectangle
Width="200"
Height="200"
Fill="Red"
Canvas.Top = "10"
Canvas.Left = "10"
/>
Rectangle testRect = new Rectangle();
testRect .Width = 200;
testRect.Height= 200;
testRect Fill= New SolidColorBrush();
testRect.SetValue(canvars.topproperty, 10.0);
testRect.SetValue(canvars.leftproperty, 10.0);
[부모객체 x:Name].Children.Add(testRect);
using System.Windows.Shapes;
[객체명].setValue([종속성 속성 형식],[데이터 형식에 맞는 종속성] ]
testRect.SetValue(Canvas.leftPropot, 10.0)
종속성 속성값 불러오기
[객체명].GetValue([종속성 속성형식]
testRect.GetValue(Canvax.topProperty);
ex)
<Rectangle
Width="200"
Height="200"
Fill="Red"
Canvas.Top = "10"
Canvas.Left = "10"
/>
Rectangle testRect = new Rectangle();
testRect .Width = 200;
testRect.Height= 200;
testRect Fill= New SolidColorBrush();
testRect.SetValue(canvars.topproperty, 10.0);
testRect.SetValue(canvars.leftproperty, 10.0);
[부모객체 x:Name].Children.Add(testRect);
using System.Windows.Shapes;