命名空间的奇怪问题

发布于 2024-11-17 04:19:40 字数 393 浏览 3 评论 0原文

我正在尝试使用 System.Drawing.Color 命名空间。我无法在类的顶部定义它:

在此处输入图像描述

但是,我可以在其中引用它班级。也就是说,我可以使用这行代码,并且它可以工作:

txtBox.BackColor = System.Drawing.Color.LightPink;

...但我宁愿能够这样做:

txtBox.BackColor = Color.LightPink;

如果这是缺少引用/dll 的问题,为什么我能够引用 System我的代码中的.Drawing.Color?

I'm trying to use the System.Drawing.Color namespace. I'm not able to define it at the top of the class:

enter image description here

However, I can reference it within the class. That is, I can use this line of code, and it works:

txtBox.BackColor = System.Drawing.Color.LightPink;

... but I'd rather just be able to do this:

txtBox.BackColor = Color.LightPink;

If it's a matter of a missing reference/dll, why am I able to make reference to System.Drawing.Color in my code?

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

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

发布评论

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

评论(5

極樂鬼 2024-11-24 04:19:40

那是因为它不是命名空间。 System.Drawing 是命名空间,Color 是一个结构体 (struct)。

编辑:此外,我建议使用诸如 ReSharper 之类的产品,它可以纠正这样的问题几乎自动地。 ReSharper 规则!

That's because it isn't a namespace. System.Drawing is the namespace, and Color is a structure (struct).

EDIT: Additionally, I'd advise to use a product such as ReSharper, which can correct stuff like this almost automagically. ReSharper rules!

-小熊_ 2024-11-24 04:19:40

您是否在项目 References 中添加了对:System.Drawing 的引用?

Did you add a reference to: System.Drawing in your project References?

无力看清 2024-11-24 04:19:40

你必须将它添加到你的参考文献中 - 不知何故它丢失了。

那么您必须在 C# 代码的顶部声明 using System.Drawing; 然后您可以调用 Color.LightPink;

You have to add it to your references - somehow it is missing.

then you have to declare using System.Drawing; in the top portion of your C# code then you can call Color.LightPink;

知你几分 2024-11-24 04:19:40

System.Drawing.Color 是一个结构体。
命名空间是 System.Drawing

System.Drawing.Color is a struct.
Namespace is System.Drawing

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