﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - ClientUI - Overriding the maximize window function?</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Overriding-the-maximize-window-function/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Overriding the maximize window function?</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Overriding-the-maximize-window-function/</link><pubDate>Wed, 24 Nov 2010 04:40:46 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;You could use the UXWindow WindowStateChanged event handler to modify the width and height after yje UXWindow is maximized. Here is the snippet:&lt;/p&gt;&lt;pre&gt;private void wndHome_WindowStateChanged(object sender, WindowOperationEventArgs e)&lt;br /&gt;{&lt;br /&gt;    UXWindow wndObj = (UXWindow)e.OriginalSource;&lt;br /&gt;    if (wndObj.WindowState == Intersoft.Client.UI.Aqua.UXDesktop.WindowState.Maximized)&lt;br /&gt;    {&lt;br /&gt;        wndObj.Height = this.ActualHeight;&lt;br /&gt;        wndObj.Width = this.ActualWidth;&lt;br /&gt;    }&lt;br /&gt;}&lt;/pre&gt;&lt;p&gt;FYI, we implement the maximize behavior bacause by extending the UXWindow to its full size, it will block user from using the UXWindow element located below the UXDesktopDock. &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Overriding the maximize window function?</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Overriding-the-maximize-window-function/</link><pubDate>Tue, 23 Nov 2010 12:33:13 GMT</pubDate><dc:creator>Syllus</dc:creator><description>&lt;p&gt;Is there a way to override the uxwindow maximize function?  Currently the maximize method sets the window size so that it stops at the top of the DesktopDock bar.  &lt;/p&gt;
&lt;p&gt; &lt;img style="border-bottom: medium none; border-left: medium none; width: 600px; height: 438px; border-top: medium none; border-right: medium none" src="http://www.apexwin.com/images/1.jpg" /&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;My boss wants the window to fill the entire desktop area when maximized.&lt;/p&gt;
&lt;p&gt;&lt;img style="border-bottom: medium none; border-left: medium none; border-top: medium none; border-right: medium none" src="http://www.apexwin.com/images/2.jpg" /&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;</description></item></channel></rss>