Click here to Skip to main content
16,021,209 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Actually, I want to create Floating model/popup/form in Window Form Application C# ,

So want to know how i can create it using C# Window Form Application

What I have tried:

So i'm trying following things:

- I can move it any location in screen
- And also can work on main form along with showing Floating model/popup/form
- Also i can copy text from Floating model/popup/form
Posted
Comments
[no name] 30-May-17 8:24am    
So which one is it: model, popup or form? You need to provide a better description of what you are trying to do.
Robert Welliever 30-May-17 10:30am    
You can accomplish your goal by creating a second Form in the designer, then set its "Topmost" property to false. Then in your first form, you just open it:
Form newForm = new Form();
newForm.ShowDialog(); // makes modal popup
newForm.Show(); // makes non-modal popup
Only instead of explicitly using "Form", replace with the name of your particular Form object.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900