是否可以在样式中使用转换器?
是否可以在样式中使用转换器? 例如,我试图创建一个样式化的 TextBlock
,其文本大小根据 TextBlock
的 ActualHeight
属性进行调整。 调整大小将通过转换器完成。
Is it possible to use a converter within a style? For instance I am trying to create a styled TextBlock
whose text resizes based on the ActualHeight
property of the TextBlock
. The resizing would be done via a converter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。 例如:
根据您的具体情况,您也许还可以使用更简洁的:
Yes, this is possible. For example:
Depending on your exact scenario, you might also be able to use the more succinct:
我成功地通过使用获得了与工作类似的东西:
希望它也适合你。
Yann
PS - CompanyName 是我将文本块绑定到的实际 ViewModel 属性的名称
I managed to get something similar to work by using:
Hope it works for you too.
Yann
PS - CompanyName is the name of the actual ViewModel property I was binding the textblock to