Tagged Questions

MDI (Multiple Document Interface) is a type of GUI , which presents a single parent (container) window for other windows in a specific application

learn more… | top users | synonyms

10
votes
4answers
1k views

Switch GUI application behavior between SDI and MDI

I currently have an SDI application that is build with Delphi 7, I want the final user to choose the type of interface between SDI and MDI at runtime. my question is how can I change the behavior of ...
9
votes
9answers
3k views

Problem with icon on creating new maximized MDI child form in .NET

I have a .NET 3.5 MDI WinForms application. I set a a child form's Icon property, and the icon shows up correctly in the top left corner of the form. I then maximize the child form and the icon is ...
6
votes
3answers
419 views

C# WinForms: How do you prevent child form from being minimized when parent form is minimized?

I am creating a C# WinForms MDI application. I have a main form which contains 4 other forms inside it. I want to be able to move the child forms outside of the parent form (their FormBorderStyle ...
6
votes
9answers
3k views

Delphi, frames vs forms. What for multi-document interface?

yesterday I've started discussion on "MDI vs tabbed interface". I've asked whether should I continue developing my app as MDI-based, or should I embed the child forms into tab sheets. Someone pointed ...
5
votes
2answers
628 views

Visual Studio 2010 annoyingly opens documents in wrong MDI pane

Visual Studio's MDI is currently causing me a lot of frustration. Here is my basic layout: +--------------+---+ | | | | 1 | | | | | | | 3 | ...
5
votes
4answers
1k views

C#.NET MDI bugs when programicaly hiding and showing again a maximized child form and when maximized, child form's icon cannot be changed

sorry for such long title :) Basically I am having two problems with C#.NET MDI. You can download VS2010 solution which reproduces bugs here. 1) When programicaly hiding and showing again a ...
5
votes
2answers
4k views

MDI Applications in WPF

I am working on a new .Net WPF project and will most likely be using the PRISM framework. One of the requirements that I have for the application is to have an MDI type user interface. I need a main ...
5
votes
4answers
3k views

Delphi, MDI vs Tabs for multi-document interface

I'm developing a multi-document application. Currently it uses MDI which is quite convenient for me (as a developer) as well as for users I believe. However there is one "against" - I haven't found a ...
5
votes
1answer
6k views

Difference between .Owner property and ShowDialog(IWin32Window owner)?

I presume a winform's owner can be set explicitly via the .Owner property OR by passing the owner in the overloaded method ShowDialog(IWin32Window owner) I am unable to understand why these methods ...
4
votes
2answers
94 views

.NET: How to open a file with an existing instance?

I have an MDI file viewer. That is, my program can open multiple files in a single instance. By the way, my application is not a single instance application, so the users can open as many instances as ...
4
votes
1answer
200 views

MDI Windows and passing accelerators between a parent and a child window issue

I have MDI application with the menu strip and one child window. The child window uses accelerators (& sign before enu item name) When left alt + other key pressed MDI parent's menu strip gets ...
4
votes
2answers
3k views

Change Background of an MDI Form

How can I change the BACKGROUND color of the MDI FORM in C#? I changed it using the background color property but the color is not changed. What should I do to perform this task? Please help ...
4
votes
3answers
1k views

Winforms MDI “Desktop” Area Boundry

The default MDI parent control has a large "desktop" area that can display multiple child forms. Users can drag forms to the edge of this desktop area so that most of the child form is off the screen. ...
4
votes
5answers
8k views

Passing value from child to mdi parent in VB.net

I have a simple contact book. The application has a main window that's an mdi form. When a contact is added using the "add a contact" form, I want to show a simple feedback message in the parent ...
4
votes
8answers
1k views

Is there still a place for MDI?

Even though MDI is considered harmful, several applications (even MS Office, Adobe apps) still use it either in its pure form or some as a hybrid with a tabbed/IDE-like interface. Is an MDI interface ...
4
votes
3answers
942 views

How can I take eclipse out of MDI mode?

Does anyone know of a way to make Eclipse an SDI application rather than an MDI one? SDI - Single document interface, each pane is its own window MDI - Multiple document interface, all of the panes ...
3
votes
3answers
118 views

JDesktopPane - how to get active frame

How to get active (having focus) frame (JInternalFrame) that is inside JDesktopPane? I need it for my MDI notepad (not that anybody would use that, just a training project). Looking at api, I see only ...
3
votes
1answer
337 views

MDI interface with FireMonkey

Is it possible to create an MDI application using FireMonkey in a traditional sense of many documents forms/frames and one master form? I'm specifically interested since there are no MDI controls on ...
3
votes
2answers
738 views

Merge toolstrip MDI child - parent

I found some informations on the internet but nothing helped me out. How can I merge a toolstrip in the parent mdi form? Edit: It worked for me with this code: private void ...
3
votes
3answers
881 views

WPF MDI children

This question has been posted before, but I can't find a good answer. I want MDI children in my WPF application. And I want those children to be fully WPF compliant. .Net WPF doesn't have MDI ...
3
votes
3answers
2k views

C# - Prevent duplicate MDI children forms

Is there a way to prevent the opening of a certain form within an MDI container if that said form is already opened? Thanks.
3
votes
2answers
3k views

Delphi MDI - handling open/close/activate child form

I'm developing MDI application which assigns a tab for each created MDI child. I need to "catch" OnActivate, OnCreate and OnDestroy events of child form in the main (parent) form code. Simply calling ...
3
votes
4answers
307 views

Inspiration to get rid of MDI UI

Microsoft seems to want us to stop using the MDI, but if more people are like me they're stuck on how things used to be. Software like Word and Excel is simple to create without MDI, but I have ...
3
votes
2answers
2k views

GUI Design - Multiple forms vs Simulated MDI (Tabs) vs PageControl

which of the following styles do you prefer? An application which to perform tasks opens new forms An application which keeps the various "forms" in different tabs An application which is based on a ...
3
votes
1answer
2k views

How to remove gray background on MDI parent form?

What I'm trying to do is draw some glass on a form marked as an mdi container. However as soon as the IsMdiContainer is set, the form adds an MdiClient to it's list of Controls. At this point ...
3
votes
1answer
1k views

How to remove the MDI child text from the parent form title bar? C# .NET

I have a form that acts as MDI parent form and several other forms as MDI child. The child windows have FormBorderStyle.None and ControlBox = false so that no border stuff from the MDI children is ...
3
votes
2answers
810 views

Glass look for MDI windows under Vista

I am developing a winforms MDI application in C# in VS 2008. I have noticed that the MDI forms don't have the glass look under Vista. Is this by design? Is there a simple way to get the glass look ...
3
votes
5answers
1k views

How do I discover if my delphi application currently has a modal window?

I've got a timer running in my Delphi MDI application and I'd like to use it to pop up a message if something changes in the background. But I don't want that message to pop up when the the ...
3
votes
1answer
848 views

MessageBox loses focus in maximized MDI form

I have an MDI application (written in .NET 2.0) which lets users open multiple child forms. The child forms are always maximized inside the MDI parent. When the MDI parent is maximized and I attempt ...
2
votes
1answer
27 views

Where is the composition root in a WPF MDI application?

In traditional MDI applications some objects (Forms) will be created when a command occurs (Ex. pressing a ribbon button), so it maybe a composition point. I'm confiused about composition root in such ...
2
votes
1answer
29 views

Java MDI application with IntelliJ

Does IntelliJ have any special support for developing a MDI (Multiple Document Interface) application? I found some generic articles that go over creating one in Java, but I was wondering if IntelliJ ...
2
votes
1answer
25 views

Handling object context(s) in MDI applications with Entity Framework

I am building a MDI application using Entity Framework but I am wondering how to use the object context accross all the windows. I planned to use a single context (singleton) accross the application ...
2
votes
2answers
64 views

How to get the number of open MDI children

In C#, how do you obtain the number of open MDI children windows? I could make my own counter, but I'm not sure if there's already some in-built functionality for this. I tried using ...
2
votes
3answers
161 views

Delphi Multiple MDI Children causes window state change

I'm looking to prevent MDI child WindowState changes occurring when creating a second MDI child... I have an application that I'm developing, written in Delphi. Through a little Delphi/Windows magic, ...
2
votes
1answer
77 views

Excluding certain MDI child windows from cascading

I have written an MDI app with many child forms, each different. Let's say that the user has created three child forms: the first form has its top left hand corner at screen coordinates 0,0; a second ...
2
votes
2answers
246 views

MDI window z-order oddity when activating

I have an application with many MDI child windows. Normally, the user is able to bring one MDI child window to the front by clicking on both the client and non-client areas of the window. This seems ...
2
votes
1answer
124 views

Modeless Child WPF Window to a native MFC MDI Application

I have an MFC MDI application and I am trying to add a new dialog to it. I want this dialog to be in WPF (a Window basically rather than a dialog). This window should be modeless and a child to the ...
2
votes
2answers
146 views

Clear checked items from a listbox without firing itemcheck event

I got a checkedlist box in form2 (clbForm2) where i'm explicity mapping it to an item check event. Now i need to uncheck all the checked items of the control in Form1, from within form2. On unchecking ...
2
votes
1answer
934 views

Open Modal window in Center of Parent Form in MDI Application

I am working on Winform application and want to open modal form in center of parent form. In Winform application there is : MDI Form (open as startup form and act as container for all) on click of ...
2
votes
3answers
154 views

“Partially modal” forms in MDI app

I've got an MDI application. The user can open different non modal forms, for instance form A and form B. On form A there is a button which opens another form (let's say form C) and the same goes for ...
2
votes
1answer
173 views

Winforms MDI and TreeView

I am currently working on a winforms application. In one of requirements I need to make sure that I can add a node to a treeView which is contained in a child form , when i click on a tabstrip button ...
2
votes
2answers
201 views

Contain a VB6 form in a .Net MDI

I'm porting an old VB6 app into .Net but one Vb6 form is too big to migrate in this release. I Shell the Vb6 exe to show the VB6 form from .Net, but the VB6 form is not contained in the .Net MDI. I ...
2
votes
1answer
271 views

Is it possible to change size of minimized window in MDI C# Winforms

Users complain that when they have several minimized windows in MDI container it's impossible to distinguish them unless they resore each. I wonder if it's possible to make minimized window a little ...
2
votes
3answers
1k views

C# MDI Parent detect when MDI Child is closing?

I'm attempting to detect, on the MDI parent, when my MDI child form closes, and react accordingly. The MDI parent shouldn't do anything until the MDI child closes. Here is my code, I'm unsure as to ...
2
votes
3answers
270 views

Limiting number of instances of windows in an MDI application

I want to restrict the user to create multiple instances of a form in an MDI application. If one instance of that form is opened it must get focus. If it is not a new instance it must be created. ...
2
votes
3answers
2k views

How to implement mdi in a wpf application

I'm mew to WPF and I really like MDI applications. It allows me to move quickly between windows and compare the content of different windows. Furthermore, sometime the content of one window is useful ...
2
votes
1answer
173 views

Discard ALT key press in CMainFrame

I'm having the following code: CMainFrame* pFrame = new CMainFrame; if (!pFrame) return FALSE; m_pMainWnd = pFrame; // create and load the frame with its resources ...
2
votes
2answers
310 views

Surely MDI not so bad? [closed]

Surely MDI not so bad? I have an ERP-type app and I have chosen a MDI UI model. The reason for this is to enable the user to multitask. Yes, many say that a user cannot multitask, but hear me out. ...
2
votes
1answer
362 views

Merging MDI toolbar

In .net MDI application the menu of child form automatically is merged to the menu of parent form. Is there a way to do similar thing with the tool bars.The concept is to send the toolbar of active ...
2
votes
2answers
583 views

c# main menu and mdi forms

So far in my life, as a .net developer, I have made heavy use of mdi forms to display particular "menu points" such as for instance "module 1" "module 2" and so on. I have been doing this the ...

1 2 3 4 5 7