Tagged Questions
The freezable tag has no wiki summary.
13
votes
3answers
498 views
Workaround for WPF Freezable bug?
I've been hitting a really bad WPF bug recently. I think it's the same as this bug on Microsoft Connect.
Our application targets .NET 4.0 Client Profile using Visual Studio 2010.
Basically, when a ...
10
votes
1answer
2k views
Why is CompositeCollection not Freezable?
I am writing an application using the MVVM pattern. I am providing data to my view by setting my view's DataContext property to an instance of my ViewModel. Generally I just use Binding from there ...
7
votes
1answer
2k views
what does this error mean?
I'm getting this error:
Cannot use a DependencyObject that belongs to a different thread than its parent Freezable
What does that even mean? Is it in English? Is the parent frozen, or is it just ...
7
votes
2answers
3k views
In what scenarios does freezing WPF objects benefit performance greatly?
Many types in WPF derive from Freezable. It provides immutability to mutable POCO objects and, apparently, allows for improved performance in certain situations.
Has anyone found that freezing ...
3
votes
1answer
72 views
Changing the visibility of a frozen object?
I'm trying to optimize my WPF/VB.net program, and I'm considering freezing some objects. However, while I know that an object that is animated in any way cannot be frozen, I need to know...can you ...
3
votes
2answers
2k views
How can WPF objects deriving from Freezable be frozen in XAML?
Many types in WPF derive from Freezable. It provides immutability to mutable POCO objects and allows for improved performance in certain situations.
So my question is, how can I freeze objects in ...
2
votes
3answers
133 views
How do I create my own Freezable class?
I've tried MSDN but there is not an example for deriving from Freezable.
Update:
Yes in the MSDN there's an example with animations but it's too complicated.
need something simpler to understand ...
2
votes
2answers
176 views
Any “Gotchas” with using Freezable class outside of WPF?
I've been reading up on concurrency, and looking at things from a more "thread safe" point of view. WPF (or actually System.Windows.Freezable and others) has a freezable class, which can give ...
1
vote
3answers
484 views
How to debug this error when none of my code shows up in the stack?
I'm sometimes getting the following error in my application:
Cannot use a DependencyObject that belongs to a different thread than its parent Freezable
I know how to solve this kind of error, ...
1
vote
1answer
734 views
WPF Merged ResourceDictionary inconsistencies
I have a ResourceDictionary, which consists of a Brush object and a Style using this Brush object for several animated properties in its Template property (via StaticResource markup extension). The ...
1
vote
1answer
419 views
The mysteries of extending the WPF animation classes
Silverlight has a property on its animation timelines (like DoubleAnimation) called EasingFunction which allows you to specify a function with which to interpolate two values. Even though it's coming ...
0
votes
1answer
34 views
Cannot use a DependencyObject that belongs to a different thread than its parent Freezable
Ive got a wpf form, from which i want to display a loading popup as soon as the user makes a choice from the controls, because the loading of the data could take long seeing as the Database is not ...
0
votes
1answer
74 views
using storyboard to raise a custom command. Error: Storyboard Not freezable
I have having issues with a storyboard that is complaining about being unfreezable. There are alot of links on google about this, however I am not sure from reading that information how I can achieve ...
0
votes
2answers
81 views
WPF frozen BitmapImage not showing
I am using a viewmodel bound to an image property on the UI and the viewmodel contains an ImageSource property. I set that property using the following function
private BitmapImage ...
0
votes
1answer
48 views
What is the difference between Freezable.Clone() & Freezable.CloneCurrentValue() methods
The documentation says
Clone-
"Creates a modifiable clone of the System.Windows.Freezable, making deep copies
of the object's values. When copying the object's dependency properties,
this method ...