Control.Contains(Control) 方法

定義

擷取指示控制項是否為控制項的子控制項的值。

C#
public bool Contains (System.Windows.Forms.Control ctl);
C#
public bool Contains (System.Windows.Forms.Control? ctl);

參數

ctl
Control

要評估的 Control

傳回

如果指定的控制項是控制項的子控制項,則為 true,否則為 false

範例

下列程式碼範例會呼叫 其 BringToFront 方法,以確保 Label 可見。 此範例需要您具有 FormPanel 具名 panel1 的 ,以及 Label 名為 label1 的 。

C#
private void MakeLabelVisible()
{
   /* If the panel contains label1, bring it 
   * to the front to make sure it is visible. */
   if(panel1.Contains(label1))
   {
      label1.BringToFront();
   }
}

適用於

產品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

另請參閱