XAML 转换器 ConvertBack

发布于 2024-10-09 12:45:59 字数 405 浏览 0 评论 0原文

有没有办法直接从 XAML 访问实现 IValueConverter 的转换器的 ConvertBack 方法?

基本情况如下(关系):

Route (1)<->(CN) Training (1)<->(CN) Kilometer

DataContext 设置为 Training。从这里我使用 Convert-Method 来访问我的所有公里。我还有一个从 RouteIList 的转换器,并且 ConvertBack 会查找 Route 中的 Training 。但我似乎无法从 XAML 访问该方法......

Is there a way to access the ConvertBack-Method of a Converter that implements IValueConverter directly from XAML?

The basic situation is the following (relationsships):

Route (1)<->(CN) Training (1)<->(CN) Kilometer

The DataContext is set to a Training. From here I use the Convert-Method to access all my Kilometers. I also have a Converter from Route to IList<Training> and the ConvertBack would lookup the Route for a Training. But I seem to not be able to access that Method from XAML…

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

微凉 2024-10-16 12:45:59

您通常不会直接调用 ConvertConvertBack 方法。它们仅用于绑定。在将源值分配给绑定目标之前,会调用 Convert 方法来转换源值。调用 ConvertBack 将值转换回双向绑定中的源。

我不确定你想做什么,但转换器似乎不是你最好的选择......也许你应该提供更多关于你想要实现的目标的细节

You usually don't call the Convert or ConvertBack methods directly. They are only used in bindings. The Convert method is called to convert the source value before it is assigned to the binding target. The ConvertBack is called to convert the value back to the source in a two-way binding.

I'm not sure what you're trying to do, but it doesn't seem like converters are your best option... perhaps you should give more details about what you want to achieve

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文