WPF code-behind for resources? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:04:38Z http://stackoverflow.com/feeds/question/769960 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/769960/wpf-code-behind-for-resources 1 WPF code-behind for resources? barriovolvo 2009-04-20T20:33:32Z 2009-04-20T21:42:29Z <p>Hi all,</p> <p>I'm working on a wpf application, and up until recently, I had a ResourceDictionary inside my main window's resources part of the xaml. The resource dictionary contained an DataTemplate that was used to style several listboxes in the window. The xaml for this datatemplate contained pointers to event handlers, eg:</p> <pre><code>&lt;Button n:Name="btnClickMe" Content="Click Me!" LeftMouseButtonUp="btnClickMe_Click" /&gt; </code></pre> <p>I recently decided to split the content of the window up into separate user controls, and to move my ResourceDictionary into it's own file. But, of course, there isn't a code-behind file for a resource dictionary file. How can I wire this up, with things split up as I've described?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/769960/wpf-code-behind-for-resources/769986#769986 1 Answer by Jeff Wain for WPF code-behind for resources? Jeff Wain 2009-04-20T20:39:03Z 2009-04-20T20:39:03Z <p>You can add a code-behind to a ResourceDictionary; just make sure your class names are referenced correctly. For instance, in the ResourceDictionary if you were working with AppStyles.xaml the XAML file would have a class of:</p> <pre><code>x:Class="Client.App.Shell.themes.AppStyles" </code></pre> <p>In the code-behind, AppStyles.xaml.cs, you would make sure to have the class:</p> <pre><code>namespace Client.App.Shell.themes { public partial class AppStyles ... </code></pre> http://stackoverflow.com/questions/769960/wpf-code-behind-for-resources/770071#770071 0 Answer by Two Bears for WPF code-behind for resources? Two Bears 2009-04-20T21:02:31Z 2009-04-20T21:02:31Z <p>You should consider using <a href="http://msdn.microsoft.com/en-us/library/ms752308.aspx" rel="nofollow">RoutedCommands</a>, I am thinking. there are many many resources online, here are a couple that might help you.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms752308.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms752308.aspx</a> <a href="http://www.devx.com/DevX/Article/37893/0/page/1" rel="nofollow">http://www.devx.com/DevX/Article/37893/0/page/1</a></p> <p></p> http://stackoverflow.com/questions/769960/wpf-code-behind-for-resources/770231#770231 0 Answer by Anthony Brien for WPF code-behind for resources? Anthony Brien 2009-04-20T21:42:29Z 2009-04-20T21:42:29Z <p>You can add a new class and name it with the same name as your resource dictionary plus the <code>.cs</code> extension and Visual Studio will automatically set things up so it becomes the code behind file. </p> <p>For example if you have a resource dictionary called <code>Buttons.xaml</code>, add a file called <code>Buttons.xaml.cs</code>.</p>