Freezable.CanFreeze (Propiedad)
.NET Framework 3.0
Gets a value that indicates whether this object can be made unmodifiable.
Espacio de nombres: System.Windows
Ensamblado: WindowsBase (en windowsbase.dll)
Espacio de nombres XML: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Ensamblado: WindowsBase (en windowsbase.dll)
Espacio de nombres XML: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Notas para los implementadores:
This method implementation uses FreezeCore with isChecking set to true to determine whether a Freezable can be made unmodifiable. To modify the way this property behaves in a derived class, override the FreezeCore method.
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 Resources Overview.
-
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.
The following example freezes a SolidColorBrush, which is a type of Freezable object.
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 Objects Overview.