I use simple Markup Extension for that:
/// <summary>
/// Simple extension for ico, let you choose icon with specific size.
/// Usage sample: Image Stretch="None" Source="{common:Icon /ControlsTester;component/icons/custom-reports.ico, 16}"
/// Or: Image Source="{common:Icon Source={Binding IconResource},Size=16} "
/// </summary>
public class IconExtension : MarkupExtension
{
private string source;
public string Source
{
get
{
return this.source;
}
set
{
// Have to make full pack URI from short form, so System.Uri can regognize it.
this.source = "pack://application:,,," + value;
}
}
public int Size { get; set; }
#endregion
#region Методы
public override object ProvideValue(IServiceProvider serviceProvider)
{
var decoder = BitmapDecoder.Create(new Uri(this.Source), BitmapCreateOptions.DelayCreation, BitmapCacheOption.OnDemand);
var result = decoder.Frames.SingleOrDefault(f => f.Width == this.Size);
if (result == default(BitmapFrame))
result = decoder.Frames.OrderBy(f => f.Width).First();
return result;
}
public IconExtension(string source, int size)
{
this.Source = source;
this.Size = size;
}
public IconExtension() { }
}
Xaml usage:
<Image Stretch="None" Source="{common:Icon Source={Binding IconResource},Size=16}"/>
or
<Image Stretch="None" DockPanel.Dock="Top" Source="{common:Icon /ControlsTester;component/icons/custom-reports.ico, 16}"></Image>