与 Wpf 绑定时,有没有办法在不使用转换器的情况下使用 System.String 函数?
与 Wpf 绑定时,有没有办法在不使用转换器的情况下使用 System.String 函数?
<TextBlock Text="({Binding Path=Text}).Trim()"/>
这基本上就是我的愿望。
When binding with Wpf is there a way to use System.String funcntions without using converters?
<TextBlock Text="({Binding Path=Text}).Trim()"/>
that's basically my desire.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我知道这篇文章很旧,但它仍然是搜索“WPF TextBox Binding Trim”时出现的第一个文章。
我没有 VB 答案,但请不要使用转换器。
原因:
像应该使用的那样使用面向对象编程。 如果您需要 Trimmed TextBox,则创建一个名为 TrimmedTextBox 的 TextBox 子项并使用它。 http://www.wpfsharp.com/2014/ 05/15/a-simple-trimmedtextbox-for-wpf/
C#
VB(我在 C# 代码上使用了转换器)
希望这会有所帮助。 请随意使用该对象,就像它是公共领域一样。
I know this post is old, but it is still the first one showing up when searching "WPF TextBox Binding Trim".
I don't have a VB answer, but please don't use a converter.
Reasons:
Use object oriented programming like it is supposed to be used. If you need a Trimmed TextBox, then create a child of TextBox called TrimmedTextBox and use that. http://www.wpfsharp.com/2014/05/15/a-simple-trimmedtextbox-for-wpf/
C#
VB (I used a converter on my C# code)
Hope this helps. Please feel free to use this object as if it were public domain.
我会使用转换器。
绑定Xaml
StringTrimmingConverter.cs
如果是VB StringTrimmingConverter.vb
I would use a converter.
Binding Xaml
StringTrimmingConverter.cs
And if VB StringTrimmingConverter.vb
我为 System.String 中的所有函数创建了一个终极转换器,需要一些改进,希望收到您的来信,希望将来更新它,请接受:
VB:
C#: -converted通过工具,不要依赖!
Xaml:
然后,在绑定中,当您使用转换器时,您可以选择将参数传递给转换器 (Binding.ConverterParameter) pass所有参数都用 : 分隔(冒号 - 您可以在 String.Split 分隔符参数中更改它),而第一个参数是函数名称,函数将计算额外的参数并尝试传递它。
我仍然没有研究参数寻址,这是一个浅层函数。
希望看到您的改进和注释。
谢谢。
摆摆
I created an ultimate converter for all the functions in System.String, needs some improvement would love to hear from you, hope to update it in future, please accept:
VB:
C#: -converted by a tool, don't rely!
Xaml:
Then, in the binding, when u use a converter u have an option to pass a parameter to the converter (Binding.ConverterParameter) pass all your parameters seperated with : (colon - you can change it in the String.Split delimiter parameter), while the first parameter is the function name, the function will count the extra parameters and try to pass it.
I still didn't work on the parameters addressing, it's a shallow function.
Would like to see your improvements and notes.
thanks.
Shimmy
当您想要转换控件绑定的数据时,您将需要使用转换器。 为了避免编写大量转换器和简单转换,您可以使用动态语言运行时并用您最喜欢的 DLR 脚本语言(例如 Python、Ruby 等)编写表达式。
有关如何实现此目的的示例,请参阅我的博客系列。 第 3 部分专门讨论 ValueConverters。
You will need to use a converter as you want to transform the data your control is bound to. To avoid writing lots of converters simple transformations, you can use the Dynamic Language Runtime and write expressions in your favourite DLR scripting language (such as Python, Ruby, etc).
See my blog series for an example of how to achieve this. Part 3 talks specifically about ValueConverters.
我为 System.String 中的所有函数创建了一个终极转换器,需要一些改进,希望收到您的来信,希望将来更新它,请接受:
在绑定中,当您使用转换器时,您可以选择传递转换器的参数 (Binding.ConverterParameter) 传递用 : (冒号 - 您可以在 String.Split 分隔符参数中更改它)分隔的所有参数,而第一个参数是函数名称,该函数将计算额外的参数并尝试通过它。
我仍然没有研究参数寻址,这是一个浅层函数。
希望看到您的改进和注释。
谢谢。
摆摆
I created an ultimate converter for all the functions in System.String, needs some improvement would love to hear from you, hope to update it in future, please accept:
The in the binding, when u use a converter u have an option to pass a parameter to the converter (Binding.ConverterParameter) pass all your parameters seperated with : (colon - you can change it in the String.Split delimiter parameter), while the first parameter is the function name, the function will count the extra parameters and try to pass it.
I still didn't work on the parameters addressing, it's a shallow function.
Would like to see your improvements and notes.
thanks.
Shimmy