<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MFCChild Window maximieren]]></title><description><![CDATA[<p>Hallo Leute,</p>
<p>habe ein kleines Problem. Ich möchte, dass mein MFCChild Window (MDI Anwendung)<br />
direkt maximiert erscheint, wenn ich auf File New klicke.</p>
<p>Kann mir jemand helfen?</p>
<p>Vielen Dank im Voraus,</p>
<p>Andreas</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/191755/mfcchild-window-maximieren</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 01:27:48 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/191755.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 06 Sep 2007 08:39:49 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MFCChild Window maximieren on Thu, 06 Sep 2007 08:39:49 GMT]]></title><description><![CDATA[<p>Hallo Leute,</p>
<p>habe ein kleines Problem. Ich möchte, dass mein MFCChild Window (MDI Anwendung)<br />
direkt maximiert erscheint, wenn ich auf File New klicke.</p>
<p>Kann mir jemand helfen?</p>
<p>Vielen Dank im Voraus,</p>
<p>Andreas</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1359981</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1359981</guid><dc:creator><![CDATA[AndreasBo]]></dc:creator><pubDate>Thu, 06 Sep 2007 08:39:49 GMT</pubDate></item><item><title><![CDATA[Reply to MFCChild Window maximieren on Thu, 06 Sep 2007 10:40:19 GMT]]></title><description><![CDATA[<p>Dieser Code maximiert das ertse Fenster. Ansonsten musst Du halt immer CMDIChildWnd::ActivateFrame(SW_SHOWMAXIMIZED); ausführen.</p>
<pre><code class="language-cpp">class CChildFrame : public CMDIChildWnd
{
     virtual void ActivateFrame(int nCmdShow) 
     { 
       // if another window is open, use default
       if(GetMDIFrame()-&gt;MDIGetActive())
          CMDIChildWnd::ActivateFrame(nCmdShow); 
       else
          CMDIChildWnd::ActivateFrame(SW_SHOWMAXIMIZED);   
     }
};
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1360110</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1360110</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Thu, 06 Sep 2007 10:40:19 GMT</pubDate></item></channel></rss>