कोड को निष्पादित विधानसभा में एक संसाधन को लोड करने के लिए जहां मेरी छवि Freq.png
फ़ोल्डर में थी Icons
और इसे इस प्रकार परिभाषित किया गया था Resource
:
this.Icon = new BitmapImage(new Uri(@"pack://application:,,,/"
+ Assembly.GetExecutingAssembly().GetName().Name
+ ";component/"
+ "Icons/Freq.png", UriKind.Absolute));
मैंने एक समारोह भी बनाया:
/// <summary>
/// Load a resource WPF-BitmapImage (png, bmp, ...) from embedded resource defined as 'Resource' not as 'Embedded resource'.
/// </summary>
/// <param name="pathInApplication">Path without starting slash</param>
/// <param name="assembly">Usually 'Assembly.GetExecutingAssembly()'. If not mentionned, I will use the calling assembly</param>
/// <returns></returns>
public static BitmapImage LoadBitmapFromResource(string pathInApplication, Assembly assembly = null)
{
if (assembly == null)
{
assembly = Assembly.GetCallingAssembly();
}
if (pathInApplication[0] == '/')
{
pathInApplication = pathInApplication.Substring(1);
}
return new BitmapImage(new Uri(@"pack://application:,,,/" + assembly.GetName().Name + ";component/" + pathInApplication, UriKind.Absolute));
}
उपयोग (आप रिसोर्सहेलर क्लास में फंक्शन डालते हैं)
this.Icon = ResourceHelper.LoadBitmapFromResource("Icons/Freq.png");
नोट : WPF में MSDN पैक URI देखें :
pack://application:,,,/ReferencedAssembly;component/Subfolder/ResourceFile.xaml