Control.Visible Proprietà
Definizione
Ottiene o imposta un valore che indica se vengono visualizzati il controllo e tutti i relativi controlli figlio.Gets or sets a value indicating whether the control and all its child controls are displayed.
public:
property bool Visible { bool get(); void set(bool value); };
public bool Visible { get; set; }
member this.Visible : bool with get, set
Public Property Visible As Boolean
Valore della proprietà
true
se vengono visualizzati il controllo e tutti i relativi controlli figlio; in caso contrario, false
.true
if the control and all its child controls are displayed; otherwise, false
. Il valore predefinito è true
.The default is true
.
Esempio
Nell'esempio di codice seguente vengono utilizzate le classi derivate VScrollBar e HScrollBar e vengono impostati i relativi Visible valori di proprietà, in base alle dimensioni di un oggetto Image visualizzato in un PictureBox controllo.The following code example uses the derived classes VScrollBar and HScrollBar and sets their Visible property values, based on the size of an Image being displayed in a PictureBox control. Questo esempio richiede che PictureBox sia stato creato un oggetto in un form e HScrollBar che VScrollBar i controlli e siano stati creati in PictureBox .This example requires that a PictureBox has been created on a form and that HScrollBar and VScrollBar controls have been created on the PictureBox. Questo codice deve essere chiamato quando l'immagine viene caricata nella casella immagine e dall' Resize evento del modulo.This code should be called when the image is loaded into the picture box and by the Resize event of the form.
public:
void DisplayScrollBars()
{
// Display or hide the scroll bars based upon
// whether the image is larger than the PictureBox.
if ( pictureBox1->Width > pictureBox1->Image->Width )
{
hScrollBar1->Visible = false;
}
else
{
hScrollBar1->Visible = true;
}
if ( pictureBox1->Height > pictureBox1->Image->Height )
{
vScrollBar1->Visible = false;
}
else
{
vScrollBar1->Visible = true;
}
}
public void DisplayScrollBars()
{
// Display or hide the scroll bars based upon
// whether the image is larger than the PictureBox.
if (pictureBox1.Width > pictureBox1.Image.Width)
{
hScrollBar1.Visible = false;
}
else
{
hScrollBar1.Visible = true;
}
if (pictureBox1.Height > pictureBox1.Image.Height)
{
vScrollBar1.Visible = false;
}
else
{
vScrollBar1.Visible = true;
}
}
Public Sub DisplayScrollBars()
' Display or hide the scroll bars based upon
' whether the image is larger than the PictureBox.
If pictureBox1.Width > pictureBox1.Image.Width Then
hScrollBar1.Visible = False
Else
hScrollBar1.Visible = True
End If
If pictureBox1.Height > pictureBox1.Image.Height Then
vScrollBar1.Visible = False
Else
vScrollBar1.Visible = True
End If
End Sub
Commenti
Si noti che anche se Visible
è impostato su true
, il controllo potrebbe non essere visibile all'utente se è nascosto dietro altri controlli.Note that even if Visible
is set to true
, the control might not be visible to the user if it is obscured behind other controls.