Files
docs-desktop/dotnet-desktop-guide/framework/winforms/controls/how-to-reassign-existing-controls-to-a-different-parent.md
T
Andy De George c0ba284473 Initial winforms content migrated (#18)
* Merge winforms framework content to working branch (#14)

* Breadcrumb / TOC / Move net5 to net folder (#15)

* change path from net5 to net

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Add .net 5 winforms placeholder article (#16)

* added some metadata and adjusted net5 placeholder

* corrections

* corrections

* corrections

* Test1

* Swapping landing page vs concept

* fix links

* Fix links

* Fix desc
2020-09-01 16:26:21 -07:00

1.8 KiB

title, ms.date, helpviewer_keywords, ms.assetid, author, ms.author, manager
title ms.date helpviewer_keywords ms.assetid author ms.author manager
How to: Reassign Existing Controls to a Different Parent 03/30/2017
container controls [Windows Forms], Windows Forms
layout [Windows Forms], resizing
layout [Windows Forms], child controls
5a5723ff-34e0-4b6f-a57b-be4ebe35cb34 jillre jillfra jillfra

How to: Reassign existing controls to a different parent

You can assign controls that exist on your form to a new container control.

  1. In Visual Studio, drag three xref:System.Windows.Forms.Button controls from the Toolbox onto the form. Position them near to each other, but leave them unaligned.

  2. In the Toolbox, click the xref:System.Windows.Forms.FlowLayoutPanel control icon. (Do not drag the icon onto the form.)

  3. Move the mouse pointer close to the three xref:System.Windows.Forms.Button controls.

    The pointer changes to a crosshair with the xref:System.Windows.Forms.FlowLayoutPanel control icon attached.

  4. Click and hold the mouse button.

  5. Drag the mouse pointer to draw the outline of the xref:System.Windows.Forms.FlowLayoutPanel control.

  6. Draw the outline around the three xref:System.Windows.Forms.Button controls.

  7. Release the mouse button.

    The three xref:System.Windows.Forms.Button controls are now inserted into the xref:System.Windows.Forms.FlowLayoutPanel control.

See also