如何将值传递给 iValueConverter

How to pass a value to iValueConverter

我试图解决以下问题(终于成功了,但可能不是最好的方法)。这是我第一次尝试的方式:

我正在显示一个带有目录的树视图和一个带有此 WPF 代码的复选框:

<Window.DataContext>
    <local:ViewModel/>
</Window.DataContext>

<Grid>
    <StackPanel Orientation="Horizontal" VerticalAlignment="Center">
        <StackPanel.Resources>
            <!-- This Style is applied to all TextBlock elements in the command strip area. -->
            <Style TargetType="TextBlock">
                <Setter Property="VerticalAlignment" Value="Center" />
                <Setter Property="Foreground" Value="#EE000000" />
            </Style>
            <local:ColorConverter x:Key="XcolorConverter" />
        </StackPanel.Resources>
        <TreeView ItemsSource="{Binding View}">
        <TreeView.Resources>
                    <HierarchicalDataTemplate DataType="{x:Type local:Folder}" ItemsSource="{Binding SubFolders}">
                    <StackPanel Orientation="Horizontal" VerticalAlignment="Center">
                        <TextBlock Background="{Binding Path=., Converter={StaticResource XcolorConverter}}" Text="{Binding Name}"/>                            
                        <CheckBox Focusable="False" IsChecked="{Binding IsChecked}"  VerticalAlignment="Center"/>
                    </StackPanel>
                </HierarchicalDataTemplate>
            </TreeView.Resources>
    </TreeView>
    </StackPanel>
</Grid>

在下面的 ColorConverter 方法 Convert 中,我需要知道的是满足特定条件的彩色目录的完整目录名称。参数“value”是一个字符串,其值为 (MyNameSpace).Folder。如果我在调试器中检查“值”,我还会看到“名称”,它是显示在 Treeview 文本框中的目录名称(没有前面的完整路径)。但是,我无法在程序中访问 value:Name(错误 CS1061:'object' 不包含 'Name' 的定义,我不明白为什么我可以在调试器中看到它但不能访问它)也不会帮助我,因为我需要完整的目录路径。在 ViewModel class/code 中,有一个 ForEach 将目录名称分配给 ObservableCollection 文件夹。对象参数为空;我知道我可以在 xaml 中添加 ConverterParameter= 但不知道如何从 xaml.

中访问实际显示的目录

我应该如何更改 WPF 以便我的 colorConverter.Convert 方法可以访问它当时显示的(完整)目录?

    public ICollectionView View { get => cvs.View; }
    private CollectionViewSource cvs = new CollectionViewSource();
    private ObservableCollection<Folder> col = new ObservableCollection<Folder>();

public class 文件夹 { public 字符串名称{ get;放; } public ObservableCollection 子文件夹 { get;放; } = 新的 ObservableCollection(); }

public partial class ColorConverter : IValueConverter
    {
        private static int count;
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        { // Set color based upon directory, something like if paramater.(directory=c:\temp")...
            return Brushes.Green;
        }
     }   

如果我理解正确的话:

public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
    // Validating the type of incoming value
    if (value is Folder folder)
    {
        // Here we work with the folder variable
        string name = folder.Name;

        // Set color based upon directory, something like if paramater.(directory=c:\temp")...
        return Brushes.Green;
    }
    // If the received value is not of the Folder type,
    // then the converter returns an undefined value.
    return DependencyProperty.UnsetValue;
}