Groupbox into popup window in C#

Dec 15 2017 12:20 AM
Is that possible to bring groupbox from main form to popup window by clicking a button in c# windows form application ?
could you pls help me... 
my code
private void button5_Click(object sender, EventArgs e)
{
var form = new Form();
form.Show(this.GroupVolume);
}
 
but its not working. 

Answers (2)