WPF应用程序:绑定控件属性值,使用值转换器

yjghlzjz  于 2023-08-07  发布在  其他
关注(0)|答案(1)|浏览(119)

我创建了一个WPF UserControl。由于它的TextBox属性绑定,我做了一个值转换器类(实现IValueConverter接口)。
下面是C#代码:

using System;
using System.Collections.ObjectModel;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Globalization;

namespace appWPFtest
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();
        }
    }

    public class StringToIntConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            string s = value.ToString();
            if (s.StartsWith("Не в сети")) return 0;
            else if (s == "Остановлено") return 1;
            else return 2;
        }

        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new InvalidOperationException("NumberToBooleanConverter can only be used OneWay.");
        }
    }
}

字符串
我在Control.Resources部分添加了这个转换器。下面是XAML代码:

<Window x:Class="appWPFtest.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:appWPFtest"
        mc:Ignorable="d"
        Title="Window1" Height="450" Width="800">
    <Control.Resources>
        <local:StringToIntConverter x:Key="myConverter"/>
    </Control.Resources>
    <Grid>
    </Grid>
</Window>

问题如下:

现在转换器在主命名空间appWPFtest中声明,我可以以某种方式将其嵌套在UserControl类中,如下所示:

public partial class Window1 : Window
{
   public Window1()
   {
      InitializeComponent();
   }

   public class StringToIntConverter : IValueConverter
   {
    ...
   }
}


当我这样做并尝试用XAML编写时:

<Control.Resources>
    <local:Window1.StringToIntConverter x:Key="myConverter"/>
</Control.Resources>


就会变成绿色下划线
为什么当我输入<local:时,这个控件没有出现在智能感知中?有我的命名空间的所有对象,除了当前控件。。
P.S.我将非常感激你指出我英语中的错误;)

pdsfdshx

pdsfdshx1#

如果您尝试在xaml代码中悬停绿色下划线,则显示的错误非常清楚:不支持嵌套类型
我的问题是:既然转换器并不直接涉及类的逻辑,为什么还要嵌套它呢?
如果你把它放在外面(在同一个文件或另一个文件中),并像其他 IValueConverter 一样使用它,那会非常简单

相关问题