3

有人可以给我一些关于我可能做错了什么的提示吗?

所以我在 xaml 中有一个文本块

<TextBlock>
  <TextBlock.Text>
    <Binding Source="signal_graph" Path="GraphPenWidth" Mode="TwoWay" Converter="{StaticResource string_to_double_converter}" />
  </TextBlock.Text>
</TextBlock>

它附加到 signal_graph 的 GraphPenWidth 属性(双精度型)。转换器在应用程序的资源中声明为资源,如下所示:

public class StringToDoubleValueConverter : IValueConverter
  {
    public object Convert(object value, Type targetType,
        object parameter, CultureInfo culture)
    {
      double num;
      string strvalue = value as string;
      if (double.TryParse(strvalue, out num))
      {
        return num;
      }
      return DependencyProperty.UnsetValue;
    }

    public object ConvertBack(object value, Type targetType,
        object parameter, CultureInfo culture)
    {
      return value.ToString();
    }
  }

我认为会发生的是,在启动时,默认构造函数选择的属性值将传播到文本块,然后当文本块离开焦点时,未来的文本块更改将更新图形。但是,初始加载不会更新文本块的文本,并且对文本块文本的更改对图形的笔宽值没有影响。

随时要求进一步澄清。

4

1 回答 1

4

不需要转换器,请在属性中使用 .ToString() 方法。

public string GraphPenWidthValue { get { return this.GraphPenWidth.ToString(); } }

无论如何,这是一个标准字符串值转换器:

 [ValueConversion(typeof(object), typeof(string))]
    public class StringConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            return value == null ? null : value.ToString();
        }

        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
于 2013-06-18T20:55:35.257 回答