Tagged Questions
The pack-uri tag has no wiki summary.
18
votes
1answer
15k views
How can I get a BitmapImage from a Resource?
My assembly includes an image with BuildAction==Resource. I want to obtain a BitmapImage from this embedded resource.
I can load a BitmapImage from file like this:
var bitmap = new BitmapImage(new ...
9
votes
2answers
2k views
Avoiding Visual Studio designer errors when WPF resource is defined in separate project
How can I avoid Visual Studio designer errors when a WPF resource is defined in separate project?
I have three projects in a composite WPF application: the main application, an "infrastructure" ...
5
votes
1answer
1k views
Detect whether WPF resource exists, based on URI
Given a pack:// URI, what's the best way to tell whether a compiled resource (e.g. a PNG image, compiled with a Build Action of "Resource") actually exists at that URI?
After some stumbling around, I ...
1
vote
1answer
116 views
At design time pack uri is valid, but not at runtime?
I'm setting a Button's content to an Image. It looks something like this:
<Button>
<Image Source="pack://application:,,,/NavigationImages/nav_up_left.png" />
</Button>
In my ...
1
vote
3answers
3k views
Pack URI and path not resolving image in WPF
I have the following directory structure
Project
\Images
+view.png
control.xaml
and in the control I have a button defined by the following XAML:
<Button Click="Search"
Grid.Column="1"
...
0
votes
1answer
81 views
Understanding Resource location syntax ( SiteOfOrigin:,,, )
In WPF, resource's location are provided using Pack URI. Basically there are two ways of specifying the location of assembly - Application:,,, & SiteOfOrigin:,,, .
Can someone explain the usage ...
0
votes
2answers
256 views
Prism v4, MEF, WPF - Using proper Uri for module graphic
My solution's structure is:
CI.Frontier.Classic contains a MEF module. My application uses the RibbonWindow control, and the modules define what menu items should be created. I can successfully add ...