Tagged Questions

4
votes
1answer
310 views

datatemplate in app.xaml is not getting picked up without any styles?

I have a DataTemplate in app.xaml that binds a view to a viewmodel. <Application.Resources> <DataTemplate DataType="{x:Type vm:someviewmodeltype}"> <vw:somevwcontrol /> ...
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
52 views

Scope of WPF resource : Is pushing it to application scope (app.xaml) good for performance?

A) If I have a resource to be used from a user control, which one is more good performance wise..? To include it in the user control scope itself or refer the resource from app.xaml..? B) Now we ...
2
votes
0answers
182 views

WPF Design Time Loading of Global Resources When Build Action is Page

I have a WPF application that I added my own Sub Main() to do some processing and display an animated splash screen before the main window loads. Part of the process to make this work involved ...
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
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
1answer
30 views

Throw exception when access image from App.xaml.cs

First, try this. <Window x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
2answers
94 views

A View Model for App.Xaml

Can we have a viewModel for App.Xaml so that we can do some logical deductions on startUp and also form a starting point of app...
1
vote
2answers
206 views

WPF implicit DataTemplate declared in App.xaml won't take effect

In the MainWindow.xaml, I set: <Window.DataContext> <vm:MainViewModel/> </Window.DataContext> In the App.xaml file, I added the following: <Application.Resources> ...
1
vote
1answer
237 views

How do I make an EventSetter in the App.xaml file in WPF?

I want every TextBox in my application to select all its text when the user focuses on it. To do this, I put the following in my App.xaml file: <Application.Resources> <Style ...
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
299 views

App xaml assumes the first window instantiated is the main window (showdialog is ignored), I need to show multiple windows

I have the following code in my App.xaml.cs private void App_Start(object sender, StartupEventArgs e) { if ( CompletedInstall()) { //using show to allow for pacifier if loading is slow ...
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 ...
1
vote
1answer
496 views

How to use App.Xaml's ResourseDictionaries with own entry point

I created some logic for singleInstance application and I must to use my own entry point (not App.xaml) for Application. I have some styles in App.xaml which now is not working. How can I use this ...
1
vote
1answer
407 views

WPF : Access Application Resources when not referencing Shell from App.xaml

I am beginner in WPF. My App.xaml looks like below app.xaml <Application x:Class="ContactManager.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
2answers
2k views

DataTemplates in resource dictionaries don't inherit from app.xaml styles?

I added custom named styles to the app.xaml. I created an external resource dictionary (which I attach in the merged dictionaries of the app.xaml) and when I try to use one of the above named styles ...
0
votes
1answer
45 views

Does anyone know how to change the Properties.Settings.Default.{} form App.xaml.cs?

Can anyone point me in the right direction? I need some way to change Properties.Settings.Default when my application starts by adding values from am xml if it exists and bypass the StartupUri from ...
0
votes
1answer
58 views

How can I bind a TextBlock to an ObjectDataProvider resource defined in app.xaml?

I have a WPF application with MVVM, it has an Ap.XAML that looks like this. <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> ...
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
221 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
2answers
214 views

Caliburn Launch without App.xaml, but with bootstrapper

I have a WinForms project from which I want to open a WPF window from a WPF user control project. But when I create an instance of the WPF window and call Show(), the bootstrapper isn't loaded. In an ...
0
votes
1answer
332 views

WPF App.xaml in different Assembly

I want to setup a WPF Application. But instead of using the entry point of the application to a App.xaml itself, I've to projects. The first projects is a Windows Application and has a normale Main ...
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
178 views

Visual Studio 2010 uses Application.xaml; Blend 4 uses App.xaml

Previously all application level resources in a project I am authoring were stored in App.xaml. Then i decided to migrate from VS 2008 to 2010 and that is where the trouble started. After migrating, ...
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 ...