Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a "Freezable" subtype in WPF/Silverlight?

What is a "Freezable" subtype in WPF/Silvellight?

like image 283
Jonathan Allen Avatar asked Dec 10 '22 18:12

Jonathan Allen


2 Answers

Important thing. Silverlight doesn't contains Freezable or FreezableCollection in it's infrastructure.

http://msdn.microsoft.com/en-us/library/cc903925(VS.95).aspx

http://www.charlespetzold.com/blog/2008/11/Text-on-a-Path-in-Silverlight.html

like image 166
Prince Ashitaka Avatar answered Dec 30 '22 21:12

Prince Ashitaka


A freezable object is one that has a mechanism that allows you to "Freeze" it. This locks downs all the state and makes the object immutable. This makes the object more performant to use and safer to share between threads.

http://msdn.microsoft.com/en-us/library/ms750509.aspx

like image 35
darthtrevino Avatar answered Dec 30 '22 21:12

darthtrevino