Tagged Questions

8
votes
1answer
509 views

Is there a way to ignore Visual Studio errors thrown by XAML?

I know you can do it in CodeBehind with something like this... #pragma warning disable 67 ... #pragma warning restore 67 But is there a way to do this type of thing in XAML? For example, I have ...
3
votes
2answers
833 views

Application-level Resources in a Different Assembly

This question involves the Visual Studio (2008) WPF Designer's apparent inability to handle the usage of resources located at the App.xaml level if the App.xaml is in a separate assembly from the ...
2
votes
2answers
85 views

Why doesn't style-setting of the window background work?

Here is the App.xaml: <Application> <Application.Resources> <ResourceDictionary> <Style TargetType="Window"> <Setter Property="SnapsToDevicePixels" ...
2
votes
2answers
137 views

Exception with type System:Char

I am trying to create a reusable System:Char value in my xaml resources. I have: xmlns:s="clr-namespace:System;assembly=mscorlib" Then: <s:Char x:Key="MaskPromptChar">#</s:Char> I ...
2
votes
4answers
7k views

WPF: Changing Resources (colors) from the App.xaml during runtime

I am trying to make my application more customizable by allowing users to pick a color from a Color Picker dialog, and then changing the style of the application in real time (with DynamicResource) ...
2
votes
1answer
3k views

Using ObjectDataProvider

I cannot believe that nobody has gotten across this or perhaps I'm just missing something. I've got a custom DataSourceController which handles retrieving data and providing it to the rest of the ...
1
vote
2answers
408 views

How can I add a ResourceDictionary defined in a subfolder to App.xaml?

All of the code samples I've found so far reference a Resource Dictionary that's not in a project subfolder (the dictionary is at the root of the project). I have mine in a subfolder, and I can't ...
1
vote
1answer
201 views

How to inherit/extend styles from a resource dictionary?

I am having trouble extending one of my styles that I have defined in the Windows dictionary. Alone, it seems to apply the style to my controls as expected. However, if try to extend the style in ...
0
votes
3answers
51 views

How to open window directly after main application window

My app's main UI is in MainWindow.xaml. Firstly - what is causing this to be the window the application opens on startup. It does not appear to be defined as a "starup object" and there does not ...
0
votes
1answer
32 views

more Abbreviated XAML

Can you more abbretviate following code... <Button.Tag> <BitmapImage UriSource="/WpfApplication1;component/Images/ButtonIcons/ButtonIcon_Sound.png"/> </Button.Tag> in one ...
0
votes
1answer
222 views

Setting the foreground[text] color of the button in a resource dictionary

I am defining a button style in Buttons.xaml file. Can you please tell me how to set the foreground property of the button? I need to use a gradient as foreground property. Code is as below. Right ...
0
votes
1answer
50 views

Silverlight - How to post data to custom columns?

I've got an app that I'm coding in Silverlight, and I need to post data to a datagrid. When I customize the datagrid and name each of the columns that I need, nothing posts appears when I click the ...
0
votes
1answer
614 views

Referencing Themes in a dll in WPF

I am using an opensource wpf TreeListView control. The control is a library project with a themes folder in it containing some xaml theme files. In my wpf project, I have got a reference to the ...
0
votes
1answer
678 views

How get this xaml to work from app.xaml

I made this UpButton.xaml file by converting it from an .ai-file that our graphics guys made but i just can't get it to work. I was thinking of making this some sort of template/style for buttons, but ...