Form.ControlCollection.Remove(Control) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes a control from the form.
public:
override void Remove(System::Windows::Forms::Control ^ value);
public override void Remove (System.Windows.Forms.Control value);
public override void Remove (System.Windows.Forms.Control? value);
override this.Remove : System.Windows.Forms.Control -> unit
Public Overrides Sub Remove (value As Control)
Parameters
Remarks
You can use this method to remove controls that you no longer need in your form. If you want to display a control after it is removed, you will need to add the control back to the form using the Add method. To have a control remain on the form but not displayed, use the Visible property of the control.
Applies to
See also
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.