WPF code-behind for resources? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T10:04:38Zhttp://stackoverflow.com/feeds/question/769960http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/769960/wpf-code-behind-for-resources1WPF code-behind for resources?barriovolvo2009-04-20T20:33:32Z2009-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><Button n:Name="btnClickMe" Content="Click Me!" LeftMouseButtonUp="btnClickMe_Click" />
</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#7699861Answer by Jeff Wain for WPF code-behind for resources?Jeff Wain2009-04-20T20:39:03Z2009-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#7700710Answer by Two Bears for WPF code-behind for resources?Two Bears2009-04-20T21:02:31Z2009-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#7702310Answer by Anthony Brien for WPF code-behind for resources?Anthony Brien2009-04-20T21:42:29Z2009-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>