如何在 WPF 中将变量作为转换器参数传递

本文关键字:转换器 参数传递 变量 WPF | 更新日期: 2023-09-27 18:32:59

我正在尝试将代码中定义的变量作为ConverterParameter传递。然后,我将在转换器中使用此参数来决定一些单位转换。问题是我不知道如何通过这个。变量不是静态的。

<TextBox Text="{Binding MinimumRebarsVerticalDistance, Converter={StaticResource LengthConverter}, ConverterParameter={CurrentDisplayUnit}}"/>

代码隐藏:

private Units currentDisplayUnit;
public Units CurrentDisplayUnit
{
    get { return currentDisplayUnit; }
    set
    {
        currentDisplayUnit = value;
        RaisePropertyChanged("CurrentDisplayUnit");
    }
}

如何在 WPF 中将变量作为转换器参数传递

您可以使用MultiBinding来实现此目的。
首先,按IMultiValueConverter实现LengthConverter

public sealed class LengthConverter : IMultiValueConverter
{
    public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
    {
        // values array will contain both MinimumRebarsVerticalDistance and 
        // CurrentDisplayUnit values
        // ...
    }
    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
    {
        // ...
    }
}

其次,使用多重绑定绑定TextBox.Text

        <TextBox.Text>
            <MultiBinding Converter="{StaticResource LengthConverter}">
                <Binding Path="MinimumRebarsVerticalDistance"/>
                <Binding Path="CurrentDisplayUnit" RelativeSource="{RelativeSource Mode=FindAncestor, AncestorType={x:Type Window}}"/>
            </MultiBinding>
        </TextBox.Text>

注意 1:RelativeSource.AncestorType取决于声明CurrentDisplayUnit属性的位置(该示例适用于窗口的代码隐藏)。

注2:看起来CurrentDisplayUnit应该是视图模型属性。

我也有类似的情况,我需要根据用户设置的值显示一个带有许多小数的双精度。我使用单例解决了它。

我的配置.cs

   public sealed class MyConfiguration
   {
      #region Singleton
      private static readonly Lazy<MyConfiguration> lazy = new Lazy<MyConfiguration>(() => new MyConfiguration());
      public static MyConfiguration Instance { get { return lazy.Value; } }
      private MyConfiguration() {}
      #endregion
      
      public int NumberOfDecimals { get; set; }
   }

我的转换器.cs

   /// <summary>
   /// Formats a double for display in list.
   /// </summary>
   public class DoubleConverter : IValueConverter
   {
      public object Convert(object o, Type type, object parameter, CultureInfo culture)
      {
         //--> Initialization
         IConvertible iconvertible__my_number = o as IConvertible;
         IConvertible iconvertible__number_of_decimals = parameter as IConvertible;
         //--> Read the value
         Double double__my_number = iconvertible__my_number.ToDouble(null);
         //--> Read the number of decimals       
         int number_of_decimals = MyConfiguration.Instance.NumberOfDecimals; // get configuration
         if (parameter != null)  // the value can be overwritten by specifying a Converter Parameter
         {
            number_of_decimals = iconvertible__number_of_decimals.ToInt32(null);
         }
            
         //--> Apply conversion
         string string__number = (Double.IsNaN(double__number)) ? "" : (number_of_decimals>=0) ? Math.Round(double__my_number, number_of_decimals).ToString(): double__my_number.ToString();
         return string__number;
      }
      public object ConvertBack(object o, Type type, object parameter, CultureInfo culture)
      {
         throw new NotSupportedException();
      }
   }

在调用 XAML 窗体之前,必须设置NumberOfDecimals

MyConfiguration.Instance.NumberOfDecimals = user_defined_value;

ConverterParameter 不是依赖属性,您不能在此处绑定任何变量。