我使用直接绑定到控件的Binding
+ IValueConverter
来生成使用控件上的多个属性计算的结果。有没有办法在控件上的属性发生变化时调用转换器?
我知道可以使用IMultiValueConverter绑定到我想要的属性,但这会占用代码中的大量空间并打破流程。
示例代码:
MainWindow.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>
MainWindow.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();
}
}
}
答案 0 :(得分:0)
绑定到属性,只要它们是依赖属性,就是简单的解决方案,以便了解发生了一些变化。
如果你想超越border,你可以创建依赖属性监听器,当特定属性被更改时,发送一些Message,例如使用MVVM Light。然后在您想要根据更改的DP更新某些数据的任何位置捕获此消息。无论如何,我不会劝你采取这种软化的步骤。
顺便说一句,你设置了对Button的绑定,因为按钮是UI元素,那么结果转换器将被调用一次而不再被调用,请记住这一点。
创建另一个文件夹,将其命名为Converters并将它们放在所有classess中,这些classess派生 IValueConverter 或IMultiValueConverter。这样的步骤允许您获得明显的分离,另外您不会使用不相关的代码弄乱您的代码隐藏文件。