<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>caliburn Discussions Rss Feed</title><link>http://www.codeplex.com/caliburn/Thread/List.aspx</link><description>caliburn Discussions Rss Description</description><item><title>New Post: Calling an action on view model from code behind.</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=75735</link><description>&lt;div style="line-height: normal;"&gt;&lt;blockquote style="border:solid .1em #ccc;font-style:italic;margin:.25em 1em 0 1em;padding:0 .25em 0 .25em"&gt;&lt;strong&gt;katokay wrote:&lt;/strong&gt;&lt;br&gt;
&lt;p&gt;&amp;lt;Button IsDefault=&amp;quot;true&amp;quot; pf:Message.Attach=&amp;quot;SetFilter(_filter.Text)&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;Would be one way.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Unfortunately this does not work in Silverlight where the Button does not have a IsDefault property.&lt;/p&gt;&lt;/div&gt;</description><author>pyttroll</author><pubDate>Fri, 20 Nov 2009 18:17:03 GMT</pubDate><guid isPermaLink="false">New Post: Calling an action on view model from code behind. 20091120061703P</guid></item><item><title>New Post: Calling an action on view model from code behind.</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=75735</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;No problem,&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;</description><author>pyttroll</author><pubDate>Fri, 20 Nov 2009 18:15:26 GMT</pubDate><guid isPermaLink="false">New Post: Calling an action on view model from code behind. 20091120061526P</guid></item><item><title>New Post: Calling an action on view model from code behind.</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=75735</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I'm having a crazy busy day today. &amp;nbsp;So, I'll get back with an explanation, but might not be until the weekend...&lt;/p&gt;&lt;/div&gt;</description><author>EisenbergEffect</author><pubDate>Fri, 20 Nov 2009 18:14:25 GMT</pubDate><guid isPermaLink="false">New Post: Calling an action on view model from code behind. 20091120061425P</guid></item><item><title>New Post: Calling an action on view model from code behind.</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=75735</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks, that would work.&lt;/p&gt;
&lt;p&gt;I'm still interested to know if there is another way to do it though.&lt;/p&gt;
&lt;p&gt;Pyt&lt;/p&gt;&lt;/div&gt;</description><author>pyttroll</author><pubDate>Fri, 20 Nov 2009 18:07:42 GMT</pubDate><guid isPermaLink="false">New Post: Calling an action on view model from code behind. 20091120060742P</guid></item><item><title>New Post: Calling an action on view model from code behind.</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=75735</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&amp;lt;Button IsDefault=&amp;quot;true&amp;quot; pf:Message.Attach=&amp;quot;SetFilter(_filter.Text)&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;Would be one way.&lt;/p&gt;&lt;/div&gt;</description><author>katokay</author><pubDate>Fri, 20 Nov 2009 17:37:41 GMT</pubDate><guid isPermaLink="false">New Post: Calling an action on view model from code behind. 20091120053741P</guid></item><item><title>New Post: Calling an action on view model from code behind.</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=75735</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have a simple question, I have a filter control with a textbox and a button to apply the filter.&lt;/p&gt;
&lt;p&gt;My button click event is attached to the SetFilter method on my view model like this:&lt;/p&gt;
&lt;p&gt;pf:Message.Attach=&amp;quot;[Event Click] = [Action SetFilter(_filter.Text)]&amp;quot;&lt;/p&gt;
&lt;p&gt;I created a KeyDown event handler on my textbox and want to call the SetFilter method when the key pressed is &amp;quot;enter&amp;quot;:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="color:Black;background-color:White"&gt;
&lt;pre&gt;        &lt;span style="color:Blue"&gt;private&lt;/span&gt; &lt;span style="color:Blue"&gt;void&lt;/span&gt; _filter_KeyDown(&lt;span style="color:Blue"&gt;object&lt;/span&gt; sender, KeyEventArgs e)
        {
            &lt;span style="color:Blue"&gt;if&lt;/span&gt; (e.Key == Key.Enter)
            {
                &lt;span style="color:Green"&gt;// Call SetFilter on view model.&lt;/span&gt;
            }
        }

&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;How would I achieve this?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Pyt&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>pyttroll</author><pubDate>Fri, 20 Nov 2009 17:07:32 GMT</pubDate><guid isPermaLink="false">New Post: Calling an action on view model from code behind. 20091120050732P</guid></item><item><title>New Post: Presenter Hierarchy Question</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=75377</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks, I implemented the first solution, it works great.&lt;/p&gt;&lt;/div&gt;</description><author>pyttroll</author><pubDate>Fri, 20 Nov 2009 17:02:47 GMT</pubDate><guid isPermaLink="false">New Post: Presenter Hierarchy Question 20091120050247P</guid></item><item><title>New Post: Presenter Hierarchy Question</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=75377</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I would simply add another property to your root presenter that is the presenter representing your debug panel. &amp;nbsp;Or, you could create a new root presenter and have both your debug presenter and your existing presenter manager as properties on it.&lt;/p&gt;&lt;/div&gt;</description><author>EisenbergEffect</author><pubDate>Tue, 17 Nov 2009 20:02:28 GMT</pubDate><guid isPermaLink="false">New Post: Presenter Hierarchy Question 20091117080228P</guid></item><item><title>New Post: Keyboard shortcuts</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=74724</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Submitted patch #4459.&lt;/p&gt;&lt;/div&gt;</description><author>jagregory</author><pubDate>Tue, 17 Nov 2009 19:19:17 GMT</pubDate><guid isPermaLink="false">New Post: Keyboard shortcuts 20091117071917P</guid></item><item><title>New Post: Presenter Hierarchy Question</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=75377</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;I would like to achieve the following user interface&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.pyttroll.com/files/caliburn00.PNG" alt=""&gt;&lt;/p&gt;
&lt;p&gt;Right now I'm just missing the &amp;quot;debug pane&amp;quot;, my root presenter derive from PresenterManager and take care of displaying appropriate content whenever I change tabs.&lt;/p&gt;
&lt;p&gt;I want to add a debug pane with its own presenter under my main content, that pane will always be visible. How should I organize my presenters? PresenterManager only has one current presenter as I understand it. Should I derive my root presenter from another class?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Pyt&lt;/p&gt;&lt;/div&gt;</description><author>pyttroll</author><pubDate>Tue, 17 Nov 2009 18:04:57 GMT</pubDate><guid isPermaLink="false">New Post: Presenter Hierarchy Question 20091117060457P</guid></item><item><title>New Post: Caliburn &amp; Prism &amp; Unity &amp; MEF</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=75339</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Unfortunately I do not have any examples of this. &amp;nbsp;I can tell you that Caliburn should work fine with MEF, you will just need to plug the MEFAdapter into the core during initialization. &amp;nbsp;I believe that there are few blogs posts out there that talk about using MEF + Unity, so you might want to look around for that. &amp;nbsp;Perhaps there is similar information on using MEF + Prism. &amp;nbsp;My guess is that you are probably going to have to piece things together to get exactly what you want. Unfortunately, that is all the help I can give in this area. Please post back here and let us know what you have discovered. I'm sure that this scenario is going to become more common and I would love to have some resources to point other developers to.&lt;/p&gt;&lt;/div&gt;</description><author>EisenbergEffect</author><pubDate>Tue, 17 Nov 2009 13:52:11 GMT</pubDate><guid isPermaLink="false">New Post: Caliburn &amp; Prism &amp; Unity &amp; MEF 20091117015211P</guid></item><item><title>New Post: Caliburn &amp; Prism &amp; Unity &amp; MEF</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=75339</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&lt;br&gt;Hi Rob&lt;br&gt;&lt;br&gt;I've built an application around Prism and Unity. I have now encountered quite a few issues you and Jeremy Miller has written about (lifecycle of MVVM triads, coordination of screens), hence my looking at Caliburn.&lt;br&gt;&lt;br&gt;I have a requirement to modularise my application and rather than use Prisms modularity approach I would like to use MEF.&lt;br&gt;&lt;br&gt;Do you have any examples of using MEF, coexisting with Unity and Prism?&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;Russell&lt;/p&gt;&lt;/div&gt;</description><author>rus_b</author><pubDate>Tue, 17 Nov 2009 11:31:33 GMT</pubDate><guid isPermaLink="false">New Post: Caliburn &amp; Prism &amp; Unity &amp; MEF 20091117113133A</guid></item><item><title>New Post: Caliburn &amp; Prism &amp; Unity</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=71329</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Whau, this make sense. Great job!&lt;/p&gt;&lt;/div&gt;</description><author>cesnek</author><pubDate>Mon, 16 Nov 2009 14:57:02 GMT</pubDate><guid isPermaLink="false">New Post: Caliburn &amp; Prism &amp; Unity 20091116025702P</guid></item><item><title>New Post: Keyboard shortcuts</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=74724</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Would you be interested in submitting a patch for this?&lt;/p&gt;&lt;/div&gt;</description><author>EisenbergEffect</author><pubDate>Mon, 16 Nov 2009 14:51:34 GMT</pubDate><guid isPermaLink="false">New Post: Keyboard shortcuts 20091116025134P</guid></item><item><title>New Post: Caliburn &amp; Prism &amp; Unity</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=71329</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Caliburn's Prism integration allows you to hook any of Caliburn's adapters into prism. &amp;nbsp;Caliburn's simple container doesn't need an adapter and can be used directly.&lt;/p&gt;&lt;/div&gt;</description><author>EisenbergEffect</author><pubDate>Mon, 16 Nov 2009 14:48:59 GMT</pubDate><guid isPermaLink="false">New Post: Caliburn &amp; Prism &amp; Unity 20091116024859P</guid></item><item><title>New Post: Caliburn &amp; Prism &amp; Unity</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=71329</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Prism has adapter for Caliburn build-in Simple Container?&lt;/p&gt;&lt;/div&gt;</description><author>cesnek</author><pubDate>Mon, 16 Nov 2009 14:34:57 GMT</pubDate><guid isPermaLink="false">New Post: Caliburn &amp; Prism &amp; Unity 20091116023457P</guid></item><item><title>New Post: Caliburn &amp; Prism &amp; Unity</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=71329</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Using the above configuration technique allows you to use any container that Caliburn provides an adapter for (including the build-in Simple Container). &amp;nbsp;The same container instance will be shared by Prism and Caliburn.&lt;/p&gt;&lt;/div&gt;</description><author>EisenbergEffect</author><pubDate>Mon, 16 Nov 2009 14:26:48 GMT</pubDate><guid isPermaLink="false">New Post: Caliburn &amp; Prism &amp; Unity 20091116022648P</guid></item><item><title>New Post: Keyboard shortcuts</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=74724</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I've done some more investigation into this myself. After reflectoring into the WPF source I found there's a validateGesture parameter to the internal KeyGesture ctor which when true (and it always is true) makes the ctor throw the UnsupportedException when no modifiers are supplied. I pulled this class out and removed the check, then replaced references to KeyGesture in Caliburn with my new one, and low-and-behold it works; seems to be no logical reason this limitation is in there.&lt;/p&gt;
&lt;p&gt;Not sure what your thoughts are on this, but for the time being I'm going to run with this modified version of Caliburn.&lt;/p&gt;&lt;/div&gt;</description><author>jagregory</author><pubDate>Mon, 16 Nov 2009 10:25:25 GMT</pubDate><guid isPermaLink="false">New Post: Keyboard shortcuts 20091116102525A</guid></item><item><title>New Post: Caliburn &amp; Prism &amp; Unity</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=71329</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;What is recommend DI container for Prism-Caliburn application?&lt;/p&gt;
&lt;p&gt;Is it possible to use Prism with Caliburn internal DI container?&lt;br&gt;Or Unity is&amp;nbsp;only choice, if you want one DI container for both frameworks in one application?&lt;/p&gt;&lt;/div&gt;</description><author>cesnek</author><pubDate>Mon, 16 Nov 2009 00:21:14 GMT</pubDate><guid isPermaLink="false">New Post: Caliburn &amp; Prism &amp; Unity 20091116122114A</guid></item><item><title>New Post: Caliburn Framework and Entity Framework</title><link>http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=74679</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;You don't need to do the mapping if you are sharing the types on both sides. The sample app is getting a bit dated... This is all accomplished for you if you are using Data Services or RIA.&lt;/p&gt;&lt;/div&gt;</description><author>EisenbergEffect</author><pubDate>Fri, 13 Nov 2009 17:35:02 GMT</pubDate><guid isPermaLink="false">New Post: Caliburn Framework and Entity Framework 20091113053502P</guid></item></channel></rss>