WPF DataGrid控件的使用 使用列模板来进行数据格式的美化

WPF DataGrid控件的使用 使用列模板来进行数据格式的美化_第1张图片
   
                
                    
                    
                
                
 
                                    
                                
                            
                        
 
                    
 
                    
                        
                    
 
                    
                        
                    
                
            

转换器:把bool 类型转换为Brush 类型

 public class BoolToBrushOnLineConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            if (value != null)
            {
                if (value is bool)
                {
                    if ((bool)value)
                    {
                        return new SolidColorBrush(Colors.Green);
                    }
                    else
                    {
                        return new SolidColorBrush(Colors.Red);
                    }
                }
            }
            return new SolidColorBrush(Colors.White);
        }
 
        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }

你可能感兴趣的:(wpf,wpf,服务器,windows)