当前位置:   article > 正文

C# WPF转换器_c# wpf 把int 转化成颜色

c# wpf 把int 转化成颜色

一、枚举转换器

枚举类

public enum 进程状态
{
    全部,
    新增,
    开发中,
    已完成
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

枚举转换器

public class 枚举转换器 : MarkupExtension
{
    private Type _enumType;

    public Type EnumType
    {
        get { return _enumType; }
        set
        {
            if (value != _enumType)
            {
                if (null != value)
                {
                    var enumType = Nullable.GetUnderlyingType(value) ?? value;
                    if (!enumType.IsEnum)
                    {
                        throw new ArgumentException("Type must bu for an Enum");
                    }

                }
                _enumType = value;
            }
        }
    }

    public 枚举转换器()
    {
    }

    public 枚举转换器(Type enumType)
    {
        EnumType = enumType;
    }
    public override object ProvideValue(IServiceProvider serviceProvider)
    {
        if (null == _enumType)
        {
            throw new InvalidOperationException("The EnumTYpe must be specified.");
        }

        var actualEnumType = Nullable.GetUnderlyingType(_enumType) ?? _enumType;
        var enumValues = Enum.GetValues(actualEnumType);

        if (actualEnumType == _enumType)
        {
            return enumValues;
        }

        var tempArray = Array.CreateInstance(actualEnumType, enumValues.Length + 1);
        enumValues.CopyTo(tempArray, 1);

        return tempArray;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54

xmal页面(窗体)进行绑定

<ComboBox
     Height="24"
     Width="100"
     x:Name="cb进程状态"
     Foreground="White"
     SelectedIndex="0"
     Style="{StaticResource Combobox样式}"
     ItemsSource="{Binding Source={local:枚举转换器 {x:Type local:进程状态}}}" 
     SelectionChanged="进程状态下拉框_选择变更事件"/>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

二、界面显示:数字转文字、颜色转换器

Convert转换类

#region 进程状态转换器
/// <summary>
/// 状态转换器
/// </summary>
public class 进程状态转换器 : IValueConverter
{
    //当值从绑定源传播给绑定目标时,调用方法Convert
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (value == null)
            return DependencyProperty.UnsetValue;
        int 进程状态 = (int)value;
        string 完成状态 = string.Empty;
        switch (进程状态)
        {
            case 0:
                完成状态 = "新增";
                break;

            case 1:
                完成状态 = "进行中";
                break;

            case 99:
                完成状态 = "已完成";
                break;

            default:
                break;
        }
        return 完成状态;
    }

    //当值从绑定目标传播给绑定源时,调用此方法ConvertBack
    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotSupportedException();
    }
}
#endregion

#region 进程状态颜色转换器
/// <summary>
/// 进程状态颜色转换器
/// </summary>
public class 进程状态颜色转换器 : IValueConverter
{
    //当值从绑定源传播给绑定目标时,调用方法Convert
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (value == null)
            return Brushes.White;
        int 进程状态 = (int)value;
        SolidColorBrush 颜色 = Brushes.White;
        switch (进程状态)
        {
            case 0:
                颜色  = Brushes.Red;
                break;

            case 1:
                颜色  = Brushes.Blue;
                break;

            case 99:
                颜色 = Brushes.Green;
                break;

            default:
                break;
        }
        return 颜色;
    }

    //当值从绑定目标传播给绑定源时,调用此方法ConvertBack
    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotSupportedException();
    }
}
#endregion
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81

xmal页面(窗体)进行绑定

<Page.Resources>
    <local:进程状态转换器 x:Key="进程状态转换器"/>
    <local:进程状态颜色转换器 x:Key="进程状态颜色转换器"/>
</Page.Resources>
  • 1
  • 2
  • 3
  • 4
<TextBlock 
    Text="{Binding 进程状态,Converter={StaticResource 进程状态转换器}}"
    Foreground="{Binding 进程状态,Converter={StaticResource 进程状态颜色转换器}}"/>
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/537632?site
推荐阅读
相关标签
  

闽ICP备14008679号