次の方法で共有


方法: Freezable が凍結済みかどうかを確認する

この例では、 Freezable オブジェクトが固定されているかどうかを確認する方法を示します。 凍結されたFreezableオブジェクトを変更しようとすると、InvalidOperationExceptionがスローされます。 この例外がスローされないようにするには、IsFrozen オブジェクトの Freezable プロパティを使用して、凍結されているかどうかを判断します。

次の例では、 SolidColorBrush を固定し、 IsFrozen プロパティを使用してテストし、固定されているかどうかを判断します。


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


Freezable オブジェクトの詳細については、「Freezable オブジェクトの概要」を参照してください。

こちらも参照ください