Aracılığıyla paylaş


Nasıl Yapılır: Freezable'ı Salt Okunur Yapma

This example shows how to make a Freezable read-only by calling its Freeze method.

You cannot freeze a Freezable object if any one of the following conditions is true about the object:

  • It has animated or data bound properties.

  • It has properties that are set by a dynamic resource. For more information about dynamic resources, see the Kaynaklara Genel Bakış.

  • It contains Freezable sub-objects that cannot be frozen.

If these conditions are false for your Freezable object and you do not intend to modify it, consider freezing it to gain performance benefits.

Örnek

The following example freezes a SolidColorBrush, which is a type of Freezable object.

            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
Button myButton = new Button();
SolidColorBrush myBrush = new SolidColorBrush(Colors.Yellow);          

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

myButton.Background = myBrush;  

For more information about Freezable objects, see the Freezable Nesnelerine Genel Bakış.

Ayrıca bkz.

Başvuru

Freezable

CanFreeze

Freeze

Kavramlar

Freezable Nesnelerine Genel Bakış

Diğer Kaynaklar

Temel Öğeler Nasıl Yapılır Konuları