最佳实践 - WPF 自定义控件库 - 组织文件、文件夹和命名空间

发布于 2024-10-10 15:34:59 字数 195 浏览 5 评论 0原文

所以我有一个带有一些控件的 WPF 自定义控件库。

有些控件非常复杂,需要将多个文件塞入各自的文件夹中。命名空间也模仿文件夹结构,因此我有像 SomeControl.SomeControl 等命名空间。一些控件很简单,只有顶级文件夹中的一个文件。我觉得这一切真的很丑陋,但我不知道什么不是!

组织自定义控件库文件夹和命名空间时有什么经验法则吗?

So I have a WPF custom control library with a few controls.

Some of the controls are quite complex and need multiple files stuffed into their own folders. Namespaces also imitate the folder structure, so I have namespaces like SomeControl.SomeControl etc. Some controls are trivial with just one file in the top level folder. I think its all really ugly but I don't know whats not!

Any rule of thumbs when organizing a custom control library both folders and namespaces?

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

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

发布评论

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

评论(1

装纯掩盖桑 2024-10-17 15:34:59

命名空间不应根据文件夹层次结构命名,而应根据功能等命名。 -

为命名空间选择的名称应该
表明所做的功能
通过命名空间中的类型可用

请参阅这篇 MSDN 文章,了解命名空间命名指南

命名空间的名称:
http://msdn.microsoft.com/en-us/library/ms229026。 .aspx

关于 SO 的其他类似问题 -

命名空间命名约定

良好的命名空间命名约定

Namespaces should not be named based on folder hierarchy but based on there functionality etc. -

The name chosen for a namespace should
indicate the functionality made
available by types in the namespace

have a look at this MSDN article for guidelines for naming Namespaces

Names of Namespaces:
http://msdn.microsoft.com/en-us/library/ms229026.aspx

Other similar questions on SO -

namespace naming conventions

Good Namespace Naming Conventions

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