<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The WPF Application Class: Overview and Gotcha</title>
	<atom:link href="http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/</link>
	<description>Trapped online since 2004</description>
	<lastBuildDate>Tue, 09 Mar 2010 17:02:57 -0500</lastBuildDate>
	<generator>http://wordpress.org/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: daeD</title>
		<link>http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/comment-page-1/#comment-676</link>
		<dc:creator>daeD</dc:creator>
		<pubDate>Fri, 11 Dec 2009 14:28:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/#comment-676</guid>
		<description>thanks a lot, I was looking for that for some time :)</description>
		<content:encoded><![CDATA[<p>thanks a lot, I was looking for that for some time <img src='http://www.ageektrapped.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ondrej Gratz</title>
		<link>http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/comment-page-1/#comment-673</link>
		<dc:creator>Ondrej Gratz</dc:creator>
		<pubDate>Fri, 06 Nov 2009 14:21:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/#comment-673</guid>
		<description>Great ! This article was useful for me, too.</description>
		<content:encoded><![CDATA[<p>Great ! This article was useful for me, too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ciantic</title>
		<link>http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/comment-page-1/#comment-670</link>
		<dc:creator>Ciantic</dc:creator>
		<pubDate>Thu, 08 Oct 2009 20:56:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/#comment-670</guid>
		<description>I&#039;m sorry above example works just fine.

Just remember to *remove* the StartupUri in Application element at app.xaml.

I was in a hurry and missed that. (Looking only the source code)</description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry above example works just fine.</p>
<p>Just remember to *remove* the StartupUri in Application element at app.xaml.</p>
<p>I was in a hurry and missed that. (Looking only the source code)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ciantic</title>
		<link>http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/comment-page-1/#comment-669</link>
		<dc:creator>Ciantic</dc:creator>
		<pubDate>Thu, 08 Oct 2009 18:40:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/#comment-669</guid>
		<description>Something is changed, or was not working all along:

public class MyApp : Application
{
    protected override void OnStartUp(object sender, StartUpEventArgs e)
    {
        MainWindow window = new MainWindow();
        MyConfigDialog dialog = new MyConfigDialog();
        dialog.ShowDialog();
        
        // Problem: The application doesn&#039;t close when mainwindow is closed.
        // window.Show();  // If you uncomment this it shows *two* main windowes. But same problem, application never closes.
    }
}</description>
		<content:encoded><![CDATA[<p>Something is changed, or was not working all along:</p>
<p>public class MyApp : Application<br />
{<br />
    protected override void OnStartUp(object sender, StartUpEventArgs e)<br />
    {<br />
        MainWindow window = new MainWindow();<br />
        MyConfigDialog dialog = new MyConfigDialog();<br />
        dialog.ShowDialog();</p>
<p>        // Problem: The application doesn&#8217;t close when mainwindow is closed.<br />
        // window.Show();  // If you uncomment this it shows *two* main windowes. But same problem, application never closes.<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zsombor</title>
		<link>http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/comment-page-1/#comment-629</link>
		<dc:creator>Zsombor</dc:creator>
		<pubDate>Sun, 03 May 2009 17:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/#comment-629</guid>
		<description>Great! 
Anyway it&#039;s not the solution of mine because I have to reopen the first and second window as well several times.
So my solution is exactly what Torna wrote!
Thank you for shaing the info. You saved me maybe hours :)</description>
		<content:encoded><![CDATA[<p>Great!<br />
Anyway it&#8217;s not the solution of mine because I have to reopen the first and second window as well several times.<br />
So my solution is exactly what Torna wrote!<br />
Thank you for shaing the info. You saved me maybe hours <img src='http://www.ageektrapped.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brenda</title>
		<link>http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/comment-page-1/#comment-609</link>
		<dc:creator>Brenda</dc:creator>
		<pubDate>Tue, 10 Mar 2009 16:08:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/#comment-609</guid>
		<description>Where does the variable &#039;firstRun&#039; get set? Everything else works great. Thanks!</description>
		<content:encoded><![CDATA[<p>Where does the variable &#8216;firstRun&#8217; get set? Everything else works great. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Torna</title>
		<link>http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/comment-page-1/#comment-607</link>
		<dc:creator>Torna</dc:creator>
		<pubDate>Mon, 02 Mar 2009 10:01:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/#comment-607</guid>
		<description>set shutdown mode to explicit on application</description>
		<content:encoded><![CDATA[<p>set shutdown mode to explicit on application</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DaveB</title>
		<link>http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/comment-page-1/#comment-603</link>
		<dc:creator>DaveB</dc:creator>
		<pubDate>Mon, 16 Feb 2009 21:37:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/#comment-603</guid>
		<description>Ran into this issue using a login dialog. Thanks for saving me hours of headache</description>
		<content:encoded><![CDATA[<p>Ran into this issue using a login dialog. Thanks for saving me hours of headache</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dew Drop - August 2, 2008 &#124; Alvin Ashcraft's Morning Dew</title>
		<link>http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/comment-page-1/#comment-469</link>
		<dc:creator>Dew Drop - August 2, 2008 &#124; Alvin Ashcraft's Morning Dew</dc:creator>
		<pubDate>Sat, 02 Aug 2008 13:47:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/#comment-469</guid>
		<description>[...] The WPF Application Class: Overview and Gotcha (Jason Kemp) [...]</description>
		<content:encoded><![CDATA[<p>[...] The WPF Application Class: Overview and Gotcha (Jason Kemp) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
