数据绑定期间自定义格式或转换 MaskedTextBox 中的数据
我正在寻找一种方法来在 MaskedTextBox 中显示除它绑定到的数据(DataTable)之外的其他数据。
更具体地说:DataTable 包含一个 DateTime 列 (DateOfBirth)。每当年份为 1900 年时,我都希望在 MaskedTextBox 中将其显示为空,同时将其保留在基础数据表中,因为我使用 1900 表示“未知”。
示例:数据表中的值:1900-10-09 --[DataBinding]--> MaskedTextBox __-10-09
目前,我正在使用 BindingSource 的 CurrentItemChanged-Event 来修改 MaskedTextBox 的 Text-property。只要我简单地浏览数据表,就可以很好地工作。然而,当我开始编辑 MaskedTextBox 时,1900 年又回来了。
如果我能以某种方式拦截从 DataRow 传递到 MaskedTextBox 的值,而不是事后替换它,那就更好了。
或者也许有办法让 MaskedTextBox 将 1900 显示为空?
I am looking for a way to display other data in a MaskedTextBox than the data it is bound to (DataTable).
More specifically: The DataTable contains a DateTime column (DateOfBirth). Whenever the year is 1900, I would like to display it as empty in the MaskedTextBox while keeping it in the underlying DataTable, because I use 1900 for "unknown".
Example: Value in the DataTable: 1900-10-09 --[DataBinding]--> MaskedTextBox __-10-09
Currently, I am using the CurrentItemChanged-Event of the BindingSource, to modify the Text-property of the MaskedTextBox. That works nicely as long as I simply browse through the DataTable. However, as soon as I start editing the MaskedTextBox, 1900 is back.
It would be nicer if I could somehow intercept the value that is passed from the DataRow to the MaskedTextBox, instead of replacing it afterwards.
Or maybe there is a way to get the MaskedTextBox to display 1900 as empty?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了完整起见:codeproject 的解决方案< /a>
For completeness: Solution at codeproject
正如 Catalin 指出的,使用 Binding.Format 事件可以解决问题:
As Catalin pointed out, using the Binding.Format event did the trick:
我认为你需要一个 ValueConverter。创建一个从 IValueConverter 派生的类并在绑定中使用它。
I think that you need a ValueConverter. Create a class derived form IValueConverter and use it in your binding.