设置 Padding - 为什么它说 padding.all 不是变量?

发布于 2024-08-12 10:21:53 字数 105 浏览 3 评论 0原文

我不明白为什么有 Control.padding.all 它是 int 并且根据提示有 set 和 get 但我无法设置它(Control.Padding.All=5)?我将不胜感激的解释。谢谢!

I do not understand why there is Control.padding.all which is int and according to hint there is set as well as get but I cannot set it (Control.Padding.All=5)? I would be grateful for explanation. Thanks!

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

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

发布评论

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

评论(2

梦言归人 2024-08-19 10:21:53

Control.Margin = 新的Padding(5)

Control.Margin = new Padding(5)

海拔太高太耀眼 2024-08-19 10:21:53

这是一个简单的实现

public class ARAControl
{
    public ARAPadding Padding { get; set; }
}
public struct ARAPadding

{
    public int All { get; set; }
}

,如果你使用它,你可能会得到这个错误,

        ARAControl control = new ARAControl();
        control.Padding.All = 10;

它发生是因为结构是一种值类型。通过设置此属性,您首先调用 get 方法。 Property Get 将返回 Padding 的副本,因此它是一个值类型,C# 将检测到错误并阻止编译

Here is a simple Implementation of this

public class ARAControl
{
    public ARAPadding Padding { get; set; }
}
public struct ARAPadding

{
    public int All { get; set; }
}

And if you use this you probably get this error

        ARAControl control = new ARAControl();
        control.Padding.All = 10;

It hapens because structure is a value type. By setting this property you first call get Method. Property Get will return a copy of Padding so it is a value type and C# will detect out mistake and prevent compiling

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