7
Reply

What is a freezable object in WPF ?

Kunal Kumar

Kunal Kumar

Sep 26, 2014
1.9k
0

    objects whole behavior/value can't be changed at runtime, once set

    Shweta Lodha
    February 03, 2017
    0

    objects whole behavior/value can't be changed at runtime, once set

    Shweta Lodha
    February 03, 2017
    0

    A freezable object has two states – frozen and unfrozen. When an object is frozen, it cannot be modified and it cannot even fires events but the unfrozen state, it works same as a normal object.

    Keerthi Venkatesan
    August 03, 2016
    0

    A Freezable object is those objects which is unchangeable. The freezable objects are better and safer to shared between the threads.

    Sushant Shinde
    February 05, 2016
    0

    Official link: http://msdn.microsoft.com/en-us/library/ms750509(v=vs.110).aspx

    Shweta Lodha
    December 19, 2014
    0

    http://www.c-sharpcorner.com/Blogs/1127/

    Munesh Sharma
    October 01, 2014
    0

    A Freezable object is a special type of object that exists in two states:frozen and unfrozen. In unfrozen state,the Freezable object appears as if it is simple object.But in frozen state, the Freezable object can not be modified.

    Kunal Kumar
    September 26, 2014
    0