Click here to Skip to main content
15,911,531 members
Home / Discussions / WPF
   

WPF

 
QuestionSilverlight problem in IIS Pin
CrazyCoder269-Jan-09 20:29
CrazyCoder269-Jan-09 20:29 
AnswerRe: Silverlight problem in IIS Pin
Mohammad Dayyan20-Jan-09 19:57
Mohammad Dayyan20-Jan-09 19:57 
AnswerRe: Silverlight problem in IIS Pin
Michael Sync29-Jan-09 2:32
Michael Sync29-Jan-09 2:32 
Question.NET MEMORY Profiler undisposed Instances Pin
ezazazel9-Jan-09 3:55
ezazazel9-Jan-09 3:55 
AnswerRe: .NET MEMORY Profiler undisposed Instances Pin
User 27100910-Jan-09 15:11
User 27100910-Jan-09 15:11 
GeneralRe: .NET MEMORY Profiler undisposed Instances Pin
ezazazel11-Jan-09 0:18
ezazazel11-Jan-09 0:18 
GeneralRe: .NET MEMORY Profiler undisposed Instances Pin
User 27100911-Jan-09 1:50
User 27100911-Jan-09 1:50 
GeneralRe: .NET MEMORY Profiler undisposed Instances Pin
ezazazel11-Jan-09 2:33
ezazazel11-Jan-09 2:33 
GeneralRe: .NET MEMORY Profiler undisposed Instances Pin
User 27100911-Jan-09 2:35
User 27100911-Jan-09 2:35 
GeneralRe: .NET MEMORY Profiler undisposed Instances Pin
Potapov A9-Mar-09 8:48
Potapov A9-Mar-09 8:48 
QuestionCustomize Collection Editor Item Pin
Vinod C S9-Jan-09 3:45
Vinod C S9-Jan-09 3:45 
AnswerRe: Customize Collection Editor Item Pin
User 27100910-Jan-09 15:14
User 27100910-Jan-09 15:14 
AnswerRe: Customize Collection Editor Item Pin
User 27100911-Jan-09 6:16
User 27100911-Jan-09 6:16 
QuestionConfigurable Image Rotator needs code review Pin
johnsontroye9-Jan-09 3:40
johnsontroye9-Jan-09 3:40 
QuestionWPF Multiple Projects Resource Dictionary Pin
Bex_30009-Jan-09 3:25
Bex_30009-Jan-09 3:25 
AnswerRe: WPF Multiple Projects Resource Dictionary Pin
Jammer9-Jan-09 3:59
Jammer9-Jan-09 3:59 
GeneralRe: WPF Multiple Projects Resource Dictionary Pin
Bex_30009-Jan-09 4:10
Bex_30009-Jan-09 4:10 
GeneralRe: WPF Multiple Projects Resource Dictionary Pin
Jammer9-Jan-09 4:32
Jammer9-Jan-09 4:32 
GeneralRe: WPF Multiple Projects Resource Dictionary Pin
Jammer9-Jan-09 4:51
Jammer9-Jan-09 4:51 
GeneralRe: WPF Multiple Projects Resource Dictionary Pin
Bex_30009-Jan-09 5:08
Bex_30009-Jan-09 5:08 
GeneralRe: WPF Multiple Projects Resource Dictionary Pin
Jammer9-Jan-09 5:21
Jammer9-Jan-09 5:21 
I wouldn't call it App.xaml in the Styles project as that is really a reserved name for a file in an actual WPF application. Maybe use something like MainDictionary.xaml instead?

Also only reference the Styles project from the project(s) that build into the executable(s).

Then in each of your App.xaml files in the project(s) that build into the executable(s) you will need to reference the MainDictionary.xaml resource dictionary in the Styles project using the same syntax you have detailed.

<ResourceDictionary><br />
<ResourceDictionary.MergedDictionaries><br />
<ResourceDictionary Source="/YourCompanyName.WPF.Styles;component/MainDictionary.xaml" /><br />
</ResourceDictionary.MergedDictionaries><br />
</ResourceDictionary>


Sounds like your on the right track to me!


GeneralRe: WPF Multiple Projects Resource Dictionary Pin
Bex_30009-Jan-09 5:29
Bex_30009-Jan-09 5:29 
GeneralRe: WPF Multiple Projects Resource Dictionary Pin
Jammer9-Jan-09 5:39
Jammer9-Jan-09 5:39 
GeneralRe: WPF Multiple Projects Resource Dictionary Pin
chefkokkie11-Feb-09 7:30
chefkokkie11-Feb-09 7:30 
GeneralRe: WPF Multiple Projects Resource Dictionary Pin
Jammer9-Jan-09 5:42
Jammer9-Jan-09 5:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.