如何本地化 PropertyEditorPart 中的 WebPart 属性?
有什么方法可以本地化 PropertyEditorPart
中显示的文本吗?
[Personalizable(true),
WebBrowsable(true),
WebDisplayName("To Date: "),
WebDescription("Please enter To Date value.")]
public string ToDate
{
get { return toDate; }
set { toDate = value; }
}
Is there any way to localize the text displayed within the PropertyEditorPart
?
[Personalizable(true),
WebBrowsable(true),
WebDisplayName("To Date: "),
WebDescription("Please enter To Date value.")]
public string ToDate
{
get { return toDate; }
set { toDate = value; }
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了实现这一点,应该扩展这些属性(Category、WebDisplayName 和 WebDescription),以便它们利用本地化功能。
更多详细信息,Web 部件属性 - 第 5 部分 - 本地化
To achieve this, these attributes (Category, WebDisplayName and WebDescription) should be extended so they take advantage of the localization features.
More details, Web Part Properties - part 5 - localization