Condividi tramite


Procedura: determinare se un oggetto Freezable è bloccato

In questo esempio viene illustrato come determinare se un Freezable oggetto è bloccato. Se si tenta di modificare un oggetto bloccato Freezable , genera un'eccezione InvalidOperationException. Per evitare di generare questa eccezione, utilizzare la IsFrozen proprietà dell'oggetto Freezable per determinare se è bloccata.

Esempio

Nell'esempio seguente viene bloccato un SolidColorBrush oggetto e quindi ne viene eseguito il test utilizzando la IsFrozen proprietà per determinare se è bloccato.


Button myButton = new Button();
SolidColorBrush myBrush = new SolidColorBrush(Colors.Yellow);

if (myBrush.CanFreeze)
{
    // Makes the brush unmodifiable.
    myBrush.Freeze();
}

myButton.Background = myBrush;

if (myBrush.IsFrozen) // Evaluates to true.
{
    // If the brush is frozen, create a clone and
    // modify the clone.
    SolidColorBrush myBrushClone = myBrush.Clone();
    myBrushClone.Color = Colors.Red;
    myButton.Background = myBrushClone;
}
else
{
    // If the brush is not frozen,
    // it can be modified directly.
    myBrush.Color = Colors.Red;
}


Dim myButton As New Button()
Dim myBrush As New SolidColorBrush(Colors.Yellow)

If myBrush.CanFreeze Then
    ' Makes the brush unmodifiable.
    myBrush.Freeze()
End If

myButton.Background = myBrush


If myBrush.IsFrozen Then ' Evaluates to true.
    ' If the brush is frozen, create a clone and
    ' modify the clone.
    Dim myBrushClone As SolidColorBrush = myBrush.Clone()
    myBrushClone.Color = Colors.Red
    myButton.Background = myBrushClone
Else
    ' If the brush is not frozen,
    ' it can be modified directly.
    myBrush.Color = Colors.Red
End If


Per altre informazioni sugli oggetti, vedere Cenni preliminari sugli Freezable oggetti Freezable.

Vedi anche