Tagged Questions

StaticResource refers to a Xaml Markup Extension implemented as part of the Windows Presentation Foundation (WPF) Resource Model.

learn more… | top users | synonyms

4
votes
3answers
577 views

Is there a significant performance cost to DynamicResource instead of StaticResource?

Our designer is using Blend to style our WPF application. When he chooses local resources for properties, Blend will apply them as a {DynamicResource} instead of a {StaticResource}. My guess is that ...
4
votes
1answer
4k views

WPF ListBox ItemsSource StaticResource/Binding question

Given the following code: <Window x:Class="WpfApplication76.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
3
votes
1answer
491 views

WPF Shared Resource Problem - No App.xaml, No Shared Resources

I have run into a little(well big) problem in an application I am working on. I am working on a module for an application for my company. The application is a WinForm application, but I have been ...
3
votes
3answers
2k views

Silverlight 4 - use StaticResource from one ResourceDictionary in another

If I have these dictionaries: dict1.xaml: <Color x:Key="Color1">Red</Color> dict2.xaml: <SolidColorBrush x:Key="Brush1" Color={StaticResource Color1} /> This works: App.xaml: ...
3
votes
3answers
360 views

Create your own system colors

Basically, how can I create my own set of Colors in a static class or the such so that I can do something like this: What exists: <Setter ... Value="{DynamicResource {x:Static ...
3
votes
2answers
584 views

Using system types in XAML as resources

I have encountered a situation where it would be very useful to specify a floating point value directly in XAML and use it as a resource for several of my UI pieces. After searching around I found a ...
3
votes
2answers
350 views

In WPF how do I reference a static resource that is defined in a different XAML file?

In WPF how do I reference a static resource that is defined in a different XAML file? It's in the same project.
3
votes
2answers
5k views

WPF StaticResource - The resource could not be resolved (VS 2010 RC)

I've got WPF 4 app that has a number of UserControls that share styles in their child controls. So I'm creating a number of styles in my App.xaml as . For example: <Style x:Key="ViewTitle" ...
3
votes
2answers
3k views

Trying to use a ResourceDictionary, but styles in it come up as not found

I have a Silverlight class library, called MyClassLibrary. In it, I have a user control, called MyControl. Within the control I define user resources: <UserControl.Resources> <Style ...
2
votes
1answer
339 views

SpringMVC: Adding a mediatype to static resources to be served

in my spring-mvc application I'm serving some static resources. JavaScrips, CSS and images get served correctly but there are also some json files which not get delivered. So this file I can see in ...
2
votes
2answers
384 views

How can I set a dependency property on a static resource?

I'm trying to get around the fact that I can't specify a dynamic value for ConverterParameter. See my other question for why I need to bind a dynamic value to ConverterParameter - I don't like the ...
2
votes
1answer
445 views

How can I use a collection class as a static resource in silverlight

I have a simple class named Customer with 2 properties. public Name {get;set;}public LastName {get;set} Then I made a collection class named CustomerList with only one public property named Customers ...
2
votes
1answer
623 views

Bind to Static Resource with a Converter

I have a DataGrid and two StaticResource. I want to bind RowStyle of DataGrid to one of two StaticResources. RowStyle="{StaticResource {Binding Status, Converter={StaticResource MyConverter}}}" ...
2
votes
1answer
619 views

WPF : problem with static resource shared in merged dictionaries

I'm currently working on having dictionaries of styles and templates that I can dynamically apply to my application. Before this "new wanted" dynamical behavior, I had several resource dictionaries, ...
2
votes
4answers
557 views

WPF DataGrid: Resource per row?

Is there a way to xamly set a StaticResource per row in a DataGrid accessing it from all the columns? UPDATE My aim is to have 3 ComboBox columns, while only the last one is actually bound to the ...
2
votes
2answers
715 views

WPF - ListBox ignores Style When ItemsSource is bound

I have created styled a ListBox in WPF so that it is rendered as a checkbox list. When I populate the ListBox's items manually, the styling works perfectly. However, when I instead bind the ...
2
votes
2answers
1k views

Is it possible to supply a type converter for a static resource in WPF?

I have a newbie WPF question. Imagine my user control has a namespace declaration like this: xmlns:system="clr-namespace:System;assembly=mscorlib" And I have resources for the user control like ...
1
vote
2answers
90 views

WPF Dynamic Resource Lookup Behavior with FixedPage

Having the following very simple xaml: <DocumentViewer Name="dv"> <FixedDocument Name="fd" Loaded="fd_loaded"> <FixedDocument.Resources> <Style ...
1
vote
1answer
79 views

How to configure static resources in jBoss AS 7

I'd like to upload images to the server, store them in file system (outside server) and then display them on my JSF page. I'd like to find something like this: <?xml version="1.0" ...
1
vote
1answer
120 views

How do I dynamically change Header's DataGrid TextColumn?

I'm trying to build a DataGrid layout where the first column's name will be dinamically changed. How can I do, into DataGridTextColumn's Header property, to change that? I've saw some examples than ...
1
vote
2answers
85 views

Apply static resource style to UIElement created in converter

I am binding the ItemsSource of an ItemsControl to a textbox and then using a converter to create UIElement objects based on the Text property of the textbox. I also have a staticresource style that ...
1
vote
1answer
628 views

Silverlight Set Style in Code behind Not working :) The obvious means is not working!

I really need help. I am dynamically creating a grid control in my code behind, then adding it to the children of the containing control that was defined in the xaml. Now, everything is dynamically ...
1
vote
3answers
339 views

MergedDictionaries and Resource lookup

i have a problem with Resource dictionaries and mergeddictionaries in general, especially when it comes to resource-lookup performance. After some performance testing i found that ...
1
vote
1answer
120 views

ContextMenu static resource compile error

I've created a Silverlight control with a ContextMenu property. I've also created a ContextMenu static resource, which one I want to add to the control, but I get a compile error. ...
1
vote
3answers
199 views

Using resources as convertion results in a bind converter

When I try to bind a valueconverter from a defined enum Status to brush, I get an error in my XAML designer: 'OKStatus' resource not found. The application works fine runtime, but I'm not able to ...
1
vote
0answers
75 views

Silverlight: Define element as subset of another element?

I've been playing around with Silverlight StaticResources as a part of my application's XAML file, and have been trying to build styles that inherit off a set of base colors. However this has brought ...
1
vote
1answer
926 views

WPF staticresource references to Logical Resources in DataTemplates not resolving at runtime

Have I missed something in the step up from .net 3.5 to .net 4 because I'm seeing seemingly buggy behaviour that seems contrary to the goal of the system. I am trying to drum up a simple MVVM library ...
1
vote
1answer
497 views

replace “DynamicResource” with “StaticResource”

To realize my application I have used a lot Blend3. When Blend3 wants to link a resource to another resource, it uses many times the link-type "DynamicResource". As I have understood (but I could have ...
1
vote
1answer
341 views

How to reference a static resource from the current component resources?

here is a demonstration of the problem : from a simple window : <Window x:Class="TestWpfStaticResource.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
1answer
605 views

Modify Silverlight Resource in VisualState

I am wondering if there is an easy way to modify some kind of shared resource (i.e. a Brush) of a control between different VisualStates. For example, I would like to define a Brush to use as both the ...
1
vote
1answer
49 views

how do you set a property of a control to an address of a function in xaml?

I have a control that has a "Filter" property that expects a function that defines how the contents of the control should be filtered. so far i am setting the filter in code behind as such: ...
1
vote
1answer
494 views

How can I instantiate WPF elements via their type when they have StaticResources?

I need to instantiate WPF types (say, a UserControl or a Page) via reflection for a designer. The problem I'm having is that when I attempt to instantiate these using Activator.CreateInstance I get a ...
0
votes
2answers
50 views

Why is StaticResource required?

First, I searched long and hard to try to find the answer to this. I resorted to here for expert help with this problem. I am currently reading a book about programming for the Windows Phone 7. I am ...
0
votes
2answers
114 views

WP7 Uri as StaticResource?

I want to define URI in the resource files, and use them on the ApplicationBar. I done it as the first answer of the following question: WP7 Image Uri as StaticResource likes: ...
0
votes
0answers
43 views

XAML: Dictionary containing staticResources?

<ResourceDictionary> <Color x:Key="RightColor">#C42A1F</Color> <Color x:Key="LeftColor">#0076AA</Color> <SolidColorBrush x:Key="RightColorBrush" ...
0
votes
2answers
41 views

Is there some way I can use assign a value in MainPage and bind it in the child window

I've a Silverlight application wherein I've a MainPage in which I need to assign a variable Name in the childwindow and assign it without using the object of the child. I need to bind thise value to a ...
0
votes
1answer
92 views

StaticResource where resource is in external assembly?

Basically, I want to keep all my XAML resources in an external assembly (for my styles). I have a reference of this external assembly in my application. Is there something to do with satellite ...
0
votes
1answer
159 views

how t use a converter inside a ResourceDictionary

I have a converter thats works great when I use it as StaticResource on my Window as follows <UserControl.Resources> <local:ValidationErrorConverter ...
0
votes
0answers
203 views

Dynamically Adding a StaticResource to the Application ResourceDictionary for Design-Time in Silverlight

If I add an object to Application.Resources during my Application.Startup event handler, I can access it during run-time: private void Application_Startup(object sender, StartupEventArgs e) { // ...
0
votes
1answer
272 views

Mapping all css resources to a single folder using SpringMVC

Is there any way to map all css resources so that they are all served from /css folder from SpringMVC? Ex. /login/sampleUser/ie.css maps to /css/ie.css I have been trying using <mvc:resources ...
0
votes
2answers
246 views

Why does Tomcat resolve context path differently for certain url-mappings?

So, I'm trying to write a servlet which can handle a url mapping like: domain/context/servlet/resource_id Before, when I was specifying the url pattern, I was just doing: /myServlet But, ...
0
votes
1answer
413 views

salesforce - Zipped css in static resource are not rendered, why?

I zipped the CSS and image file so that the images are accessible by the CSS. http://www.salesforce.com/us/developer/docs/pages/Content/pages_resources.htm I've followed documentation code but it is ...
0
votes
2answers
407 views

WPF from DynamicResource to StaticResource

I had been working on a WPF project for a while, but haven't touched it in 2 months now. Now that I'm back on it, I have the following problem: I use merged dictionaries to create skins, and easily ...
0
votes
2answers
616 views

ResourceDictionary in application resources cannot be found

I'm facing some strange issue with a ResourceDictionary in my Application.Resources. In order to fill multiple ComboBoxes inside my application, I want to store the data in a ResourceDictionary. ...
0
votes
2answers
389 views

Populating a property of type ObservableCollection in XAML with static resources

I have created a class that contains a property of type ObservableCollection. I am trying to create an instance of the class in XAML and fill this property with members. I keep getting an exception ...
0
votes
1answer
97 views

msdn Data Templating Overview

I'm following msdn data templating overview http://msdn.microsoft.com/en-us/library/ms742521.aspx But I felt they missed explaining something..for resources they have: ...
0
votes
1answer
665 views

Using usercontrols with static resources from external assembly

It sounds very simple and it's killing me! I'm trying to use one usercontrol with styles from a ResourceDictionary of an external assembly, but I get an exception at runtime. Here is how to ...
0
votes
1answer
215 views

WPF Compact this XAML which assigns static string to binding

There may not be any practical use of what I want to do, but just to satisfy my curiosity can we compact the 2nd binding in the following XAML into 1 line <TextBlock> <TextBlock.Text> ...
0
votes
1answer
489 views

Custom button with property as StaticResource

I am trying to achieve the following thing: use an svg image into a custom button. In order to do this I created a Custom button: public class MainButton : Button { static MainButton() { ...
0
votes
1answer
346 views

DynamicResource not working, but StaticResource does?

Here is the scenario: 1) Open Visual Studio 2008, create new project... 2) Select WPF Custom Control Library as the project type 3) Open the Generic.xaml resource dictionary located in the Themes ...

1 2