在 MVC 2 中,如何注释 UI 帮助程序模板的类(而不是属性)?
我知道这适用于单个属性,如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用类的名称创建一个模板,它就可以工作了。
Make a template with the name of the class, and it just works.