【发布时间】:2012-03-21 21:06:37
【问题描述】:
我正在尝试通过代码设置我的Ellipse 的Margin。如何设置Margin 的p?
auto p = ref new Windows::UI::Xaml::Shapes::Ellipse();
p->Height=100.0;
p->Width=100.0;
//p->Margin="36,19,0,0";
auto t = ref new Windows::UI::Xaml::Thickness(10.0,20.0,30.0,40.0);
【问题讨论】:
标签: c++ xaml windows-8 windows-runtime c++-cx