用于指定属性或字段的显示格式的属性
目前,我已经使用与 Windows 窗体中的验证相关的属性来装饰业务对象中的属性。
我想添加确定数据格式的属性。这有望与数据绑定无缝配合。
有办法做到这一点吗?
I currently already decorate properties in my business objects with attributes related to validation in Windows Forms.
I would like to add attributes that would determine how the data is formatted. This would hopefully work seamlessly with data binding.
Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
格式化(在 winforms 中)通过两种主要方法实现:
TypeConverter
子类,并使用 < code>[TypeConverter(...)] 在您的自定义类型(或类的属性等)上,以应用您的格式(当目标类型为typeof(string)
时)例如:
Formatting is achieved (in winforms) via two primary approaches:
ToString()
TypeConverter
subclass, and use[TypeConverter(...)]
on your custom type (or properties of a class, etc), to apply your formatting (when the target type istypeof(string)
)For example: