0

我使用直接绑定到控件的Binding+IValueConverter来生成使用控件上的多个属性计算的结果。每当控件上的属性发生变化时,有什么方法可以调用转换器?

我知道可以使用 IMultiValueConverter 绑定到我想要的属性,但这会占用代码中的大量空间并中断流程。

示例代码:

主窗口.xaml

<Window x:Class="BindingToFrameworkElement.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:BindingToFrameworkElement"
        Title="MainWindow" Height="350" Width="525">
  <Window.Resources>
    <local:ElementConverter x:Key="ElementConverter"/>
  </Window.Resources>
  <Grid>
    <TextBlock Text="{Binding ElementName=B, Converter={StaticResource ElementConverter}}"/>
    <Button Name="B" Click="Button_Click" Width="50" Height="20">Hello</Button>
  </Grid>
</Window>

主窗口.xaml.cs

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace BindingToFrameworkElement
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            B.Width += 20;
        }
    }

    public class ElementConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            FrameworkElement element = value as FrameworkElement;

            return element.ActualWidth + element.ActualHeight;
        }

        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
}
4

1 回答 1

0

绑定到属性,只要它们是依赖属性,就是简单的解决方案,以便了解发生了一些变化。
如果您想超越边界,您可以创建依赖属性侦听器,并在更改特定属性时发送一些消息,例如使用 MVVM Light。然后在要根据更改的 DP 更新某些数据的任何地方捕获此消息。无论如何,我不会建议你采取如此复杂的步骤。

顺便说一句,您将绑定设置为 Button 并且由于 button 是 UI 元素,因此结果转换器将被调用一次并且永远不会再次调用,请记住这一点。
创建另一个文件夹,将其命名为 Converters 并将它们放置在派生IValueConverter的所有类中或 IMultiValueConverter。这样的步骤允许您获得明显的分离,并且您不会用不相关的代码弄乱您的代码隐藏文件。

于 2015-12-29T21:15:43.690 回答