Popup window in winform c#
I'm working on a project where I need a popup window. But the thing is I also want to be able to add textboxes etc in this popup window thru the form designer. So basically I have a button and when you click on it it will open another window that I've designed in the form designer. I've been doing some googling but I haven't found what I needed yet so I was hoping you guys could help me! Piotr Stapp Just create another form (let's call it formPopup ) using Visual studio. In a button handler write followng code: var formPopup = new Form(); formPopup.Show(this); // if you need non-modal window