我正在尝试通过代码设置MarginEllipse。如何设置Marginp

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);

最佳答案

Thickness是值类型,而不是引用类型,因此它不是使用ref new创建的。

p->Margin = Windows::UI::Xaml::Thickness(10.0, 20.0, 30.0, 40.0);

关于c++ - 在Windows 8 XAML项目中的C++/CX中设置Margin属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9548939/

10-14 08:14