为什么发现锚绑定到附加属性不通过值转换器工作
本文关键字:工作 转换器 属性 发现 绑定 为什么 | 更新日期: 2023-09-27 18:18:22
我有一个包含图标作为矢量图形的资源字典。附加的属性允许我定义图标的颜色。当我使用图标作为静态资源时,从资源字典到附加到图像的颜色的绑定正在工作。但是当我使用值转换器的绑定时,颜色绑定不起作用。
有人知道为什么吗?
用法示例如下:
<!-- OK, smile is green -->
<Image Source="{StaticResource MaterialMood}" svg:Image.Brush="Green" />
<!-- Not OK, simle is black -->
<Image Source="{Binding Image,Converter={StaticResource GoogleMaterialSource}}" svg:Image.Brush="Green" />
ResourceDictionary.xaml:
<DrawingImage x:Key="MaterialMood" x:Shared="False">
<DrawingImage.Drawing>
<DrawingGroup>
<DrawingGroup>
<DrawingGroup.ClipGeometry>
<RectangleGeometry Rect="0,0,24,24" />
</DrawingGroup.ClipGeometry>
<GeometryDrawing Brush="{Binding Path=(svg:Image.Brush),RelativeSource={RelativeSource FindAncestor,AncestorType={x:Type Image}},FallbackValue=Black}">
<GeometryDrawing.Geometry>
<PathGeometry FillRule="Nonzero" Figures="M11.99,2C6.47,2 2,6.48 2,12 2,17.52 6.47,22 11.99,22 17.52,22 22,17.52 22,12 22,6.48 17.52,2 11.99,2z M12,20C7.58,20 4,16.42 4,12 4,7.58 7.58,4 12,4 16.42,4 20,7.58 20,12 20,16.42 16.42,20 12,20z M15.5,11C16.33,11 17,10.33 17,9.5 17,8.67 16.33,8 15.5,8 14.67,8 14,8.67 14,9.5 14,10.33 14.67,11 15.5,11z M8.5,11C9.33,11 10,10.33 10,9.5 10,8.67 9.33,8 8.5,8 7.67,8 7,8.67 7,9.5 7,10.33 7.67,11 8.5,11z M12,17.5C14.33,17.5,16.31,16.04,17.11,14L6.89,14C7.69,16.04,9.67,17.5,12,17.5z" />
</GeometryDrawing.Geometry>
</GeometryDrawing>
</DrawingGroup>
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
c#: public enum MaterialImage
{
Mood
}
public class GoogleMaterialSourceConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value == null) return null;
var imageName = string.Format("Material{0}", value);
if (!Application.Current.Resources.Contains(imageName)) return null;
var image = Application.Current.Resources[imageName] as DrawingImage;
return image == null ? null : image.Clone(); // `x:Shared = false;` ???
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
public static class Image
{
public static readonly DependencyProperty BrushProperty = DependencyProperty.RegisterAttached(
"Brush",
typeof(Brush),
typeof(Image),
new FrameworkPropertyMetadata(Brushes.Black, FrameworkPropertyMetadataOptions.Inherits));
[TypeConverter(typeof(BrushConverter))]
public static Brush GetBrush(DependencyObject element)
{
return (Brush)element.GetValue(Image.BrushProperty);
}
[TypeConverter(typeof(BrushConverter))]
public static void SetBrush(DependencyObject element, Brush value)
{
element.SetValue(Image.BrushProperty, value);
}
}
public partial class MainWindow : Window
{
public static readonly DependencyProperty ImageProperty = DependencyProperty.Register("Image",
typeof (MaterialImage), typeof (MainWindow), new PropertyMetadata(MaterialImage.Mood));
public MaterialImage Image
{
get { return (MaterialImage)this.GetValue(MainWindow.ImageProperty); }
set { this.SetValue(MainWindow.ImageProperty, value); }
}
public MainWindow()
{
this.DataContext = this;
this.InitializeComponent();
}
}
感谢King King的评论,我能够修改代码,使它现在工作。现在使用另一个附加属性来设置图像源,而不是使用IValueConverter绑定到enum值:
XAML:<Image svg:Image.Brush="Green" svg:Image.Source="{Binding Image}" />
CS: public static class Image
{
// color stuff goes here
...
public static readonly DependencyProperty SourceProperty = DependencyProperty.RegisterAttached("Source", typeof(MaterialImage), typeof(Image), new FrameworkPropertyMetadata(MaterialImage.Mood, OnSourceChangedCallback));
public static MaterialImage GetSource(DependencyObject element) { return (MaterialImage)element.GetValue(Image.SourceProperty); }
public static void SetSource(DependencyObject element, MaterialImage value) { element.SetValue(Image.SourceProperty, value); }
private static void OnSourceChangedCallback(DependencyObject source, DependencyPropertyChangedEventArgs args)
{
var image = (System.Windows.Controls.Image)source;
if (args.NewValue == null)
{
image.Source = null;
return;
}
var resourceName = string.Format("Material{0}", args.NewValue);
if (!Application.Current.Resources.Contains(resourceName))
{
image.Source = null;
return;
}
image.Source = Application.Current.Resources[resourceName] as DrawingImage;
}
}