如何单独设置 StackPanels 的边距?

发布于 2024-07-29 03:25:13 字数 346 浏览 9 评论 0原文

我可以在代码隐藏中设置堆栈面板的边距,如下所示:

StackPanel sp2 = new StackPanel();
sp2.Margin = new System.Windows.Thickness(5);

但如何单独设置每个,这两个都不起作用:

PSEUDO-CODE:

sp2.Margin = new System.Windows.Thickness("5 0 0 0");
sp2.Margin.Left = new System.Windows.Thickness(5);

I can set the margin of a stackpanel in code-behind like this:

StackPanel sp2 = new StackPanel();
sp2.Margin = new System.Windows.Thickness(5);

But how can I set each individually, both of these don't work:

PSEUDO-CODE:

sp2.Margin = new System.Windows.Thickness("5 0 0 0");
sp2.Margin.Left = new System.Windows.Thickness(5);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

呆头 2024-08-05 03:25:13

你也可以尝试这个:

sp2.Margin = new System.Windows.Thickness{ Left = 5 };

You can also try this:

sp2.Margin = new System.Windows.Thickness{ Left = 5 };
御弟哥哥 2024-08-05 03:25:13

边距的类型是厚度,它是一种结构。

“5 0 0 0”的解析是 XAML 的事情,它不是 Thickness 构造函数处理的事情。

使用

sp2.Margin = new System.Windows.Thickness(5,0,0,0);

厚度是一个结构,这也应该起作用,保持其他边距值不变:-

sp2.Margin.Left = 5;

Margin is of type Thickness which is a structure.

The parsing of "5 0 0 0" is a XAML thing, its not something that Thickness constructor handles.

Use

sp2.Margin = new System.Windows.Thickness(5,0,0,0);

since Thickness is a structure this should also work, leaving the other margin values unmodified:-

sp2.Margin.Left = 5;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文