![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
| |
| | #1 (permalink) |
| | XPS - WPF Guru's Please Help! Can anyone provide a c# example of how I can copy / reuse XPS resources? In creating a "template" system, I'm trying to: 1) read an XPS document; 2) replace place-holder text with actual text; 3) write new XPS document. My works so far leave an XPS document that when opened gives the error "AddFontResourceEx failed" ![]() Any help would greatly be appreciated. |
My System Specs![]() |
| | #2 (permalink) |
| | Re: XPS - WPF Guru's Please Help! Sir C4 wrote: > Can anyone provide a c# example of how I can copy / reuse XPS > resources? In creating a "template" system, I'm trying to: 1) read an > XPS document; 2) replace place-holder text with actual text; 3) write > new XPS document. It this of any use? Its from the Vista Launch material: pkg = Package.Open(stm); foreach (PackagePart part in pkg.GetParts()) { Debug.WriteLine(part.Uri + " (" + part.ContentType + ")"); if (part.ContentType == "image/png") { using (Stream imgStream = part.GetStream()) { Image img = new Image(); BitmapImage bmp = new BitmapImage(); bmp.BeginInit(); bmp.StreamSource = imgStream; bmp.EndInit(); img.Source = bmp; img.MaxWidth = 200; imagesList.Items.Add(img); } } } -- Chad Z. Hower Microsoft Regional Director "Programming is an art form that fights back" http://www.KudzuWorld.com/ Need a professional technical speaker at your event? http://www.woo-hoo.net |
My System Specs![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| A call for help from the PC guru's out there... | General Discussion | |||
| Imaging a Vista Installation - Question for the guru's - imagex | Vista installation & setup | |||
| Win XP, OS X x86, Vista 5365 - How to install them all? BCDEdit guru's out there? | Vista General | |||
| Win XP, OS X x86, Vista 5365 - How to install them all? BCDEdit guru's out there? | Vista installation & setup | |||