iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
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.
My boss wants the window to fill the entire desktop area when maximized.
Thanks in advance.
You could use the UXWindow WindowStateChanged event handler to modify the width and height after yje UXWindow is maximized. Here is the snippet:
private void wndHome_WindowStateChanged(object sender, WindowOperationEventArgs e){ UXWindow wndObj = (UXWindow)e.OriginalSource; if (wndObj.WindowState == Intersoft.Client.UI.Aqua.UXDesktop.WindowState.Maximized) { wndObj.Height = this.ActualHeight; wndObj.Width = this.ActualWidth; }}
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.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname