I am new to windows application. with C# and .NET.
I want something like the image i have attach. when my popup gets open, i want the mdi parent page to be shadowed or disbaled. (like we do in web application or Jquery popup)

Is it possible to do? if yes how can i do that.
Please help.
You can Achive this by making use of the opacity property of the
Windows.FormFor this create a new form, sets its opacity (for eg: .75) and show this over the parent for when ever you are showing a child window.
An Example is given Below
1. Parent Form
2. Overlay Form
This will give the parent form a blur look. We should also write some code to close the overlay in the Child Form
3. Child Form