我有一个使用GMAP.Net和Extended WPF Toolkit的WPF应用程序。我直接在我的XAML中引用这些库中的控件。我想将这些dll添加到我的项目中并将它们标记为嵌入式资源。
当我不再使用dll作为参考时,如何继续引用XAML中的控件?
编辑:显示的代码不多。这在我使用gmap作为参考时有效。xmlns:WindowsPresentation="clr-namespace:GMap.NET.WindowsPresentation;assembly=GMap.NET.WindowsPresentation"
将gmap作为参考删除并添加为嵌入资源后出现错误消息:
Error 1 The name "GMapControl" does not exist in the namespace "clr-namespace:GMap.NET.WindowsPresentation;assembly=GMap.NET.WindowsPresentation". Windows\MapWindow.xaml
xmlns
intelisense / dropdown
答案 0 :(得分:0)
保留引用的dll,在构建最终版本时不要复制它们。另外,您是否向AssemblyResolve添加了代码以引入嵌入式资源?我的代码使用gzipped程序集。
AppDomain.CurrentDomain.AssemblyResolve += ( sender, args ) =>
{
try
{
String resourceName = String.Format( "Program.Libs.{0}.dll.gz", new AssemblyName( args.Name ).Name );
using (var stream = new GZipStream( Assembly.GetExecutingAssembly().GetManifestResourceStream( resourceName ), CompressionMode.Decompress ))
using (var outstream = new MemoryStream())
{
CopyTo( stream, outstream );
return Assembly.Load( outstream.GetBuffer() );
}
}
catch (Exception e)
{
System.Diagnostics.Debug.WriteLine( e.ToString() );
return null;
}
};
public static long CopyTo( Stream source, Stream destination )
{
byte[] buffer = new byte[ 2048 ];
int bytesRead;
long totalBytes = 0;
while ((bytesRead = source.Read( buffer, 0, buffer.Length )) > 0)
{
destination.Write( buffer, 0, bytesRead );
totalBytes += bytesRead;
}
return totalBytes;
}