Hi,
Thanks for your answer. I have find my way......
Here is the solution like as you sayed.
Bye.
Thanks for your answer. I have find my way......
Here is the solution like as you sayed.
Code:
ReaderWmf metafileReader = new ReaderWmf();
Metafile metafileImage = Clipboard.GetData(DataFormats.EnhancedMetafile) as Metafile;
IntPtr hEmf = metafileImage.GetHenhmetafile();
Image myImage = metafileReader.GetGeometryFromHemf(hEmf, GeometrySettings.BasicOptimization);
string xamlStr = metafileReader.GetXaml();
CreateSymbolFromMetafile(new Point(10,10), myImage);Bye.

