在 MVC 2 中,如何注释 UI 帮助程序模板的类(而不是属性)?

发布于 2024-08-16 21:42:41 字数 734 浏览 3 评论 0原文

我知道这适用于单个属性,如 Scott Guthrie 的博客 自动神奇地使用部分视图来渲染传递给它的部分模型(像动态数据中的 UI Helper):

[UIHint("StateDropDown")]
public string State { get; set;}

但是如何注释整个类以使用像这样的 UI 助手:(

[UIHint("Address")]
public class Address {
    public string addr1 { get; set; } 
    public string addr2 { get; set; } 
    public string city { get; set; }
    [UIHint("StateDropDown")]
    public string state { get; set; } 
    public string zip { get; set; } 
}

除了 [UIHint("Address")] 似乎不适用于类。我在他的示例中看到,他在 Shared->EditorTemplates 文件夹中有“Customer.aspx”,所以我假设这个是可能的。

I know this works for single properties as per Scott Guthrie's blog to auto-magically use a partial view to render a partial model passed to it (UI Helper like in dynamic data):

[UIHint("StateDropDown")]
public string State { get; set;}

But how do you annotate an entire class to use an UI helper like this:

[UIHint("Address")]
public class Address {
    public string addr1 { get; set; } 
    public string addr2 { get; set; } 
    public string city { get; set; }
    [UIHint("StateDropDown")]
    public string state { get; set; } 
    public string zip { get; set; } 
}

(Except [UIHint("Address")] doesn't seem to work on classes. I see in his examples, he has "Customer.aspx" in the Shared->EditorTemplates folder, so I assume this is possible.

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

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

发布评论

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

评论(1

等你爱我 2024-08-23 21:42:41

用类的名称创建一个模板,它就可以工作了。

Make a template with the name of the class, and it just works.

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