Google News
logo
.Net - Interview Questions
What are MDI and SDI in .NET?
MDI (Multiple Document Interface) : An MDI allows you to open multiple windows, it will have one parent window and as many child windows. The components are shared from the parent window like toolbar, menubar, etc.
 
SDI (Single Document Interface) : SDI opens each document in a separate window. Each window has its own components like a toolbar, menubar, etc. Therefore it is not constrained to the parent window.
Advertisement