1
vote
3answers
22 views
InvalidOperationException on object from a thread that’s done
In a WPF application I had a BackgroundWorker thread creating an object. Let's call the object foo.
Background worker code:
SomeClass foo = new SomeClass();
// Do some operation …
0
votes
4answers
68 views
Dependency property not working, trying to set through style setter.
I am trying to set up a custom style for my newly made usercontrol, however i am getting the error : "Cannot convert the value in attribute 'Property' to object of type 'System.Win …
1
vote
1answer
46 views
Silverlight: Label does not evaluate Binding of custom DependencyProperty
Hi everyone!
I have a Silverlight 3 Label which I connect to a ComboBox using the Target Property of the Label. According to MSDN the Label class iterates through the targets bind …
0
votes
1answer
54 views
Binding to a UserControl’s DependencyProperty
I'm trying to adapt a soltuion for the WPF toolkit's calendar from http://msdn.microsoft.com/en-us/magazine/dd882520.aspx but I'm having problems getting a binding on the usercontr …
1
vote
1answer
44 views
Cannot databind DependencyProperty
Hi all
I have a UserControl with a DependencyProperty. I set it's value in the host window using a data binding expression. However, it doesn't work as expected.
Snippet from the …
0
votes
1answer
64 views
I’ve created an Attached Property, now how do I use it?
I'm trying to determine if Attached Behaviors are something we need in building controls for the forms in our application.
Hence, I not only want to know how to create Attached Be …
0
votes
1answer
61 views
How can I extend this dependency property example to recreate a DockPanel.Dock=”Top”-like dependency property?
I'm trying to get a better understanding of what dependency properties and what they are not. I've built the example below which enables a combobox's choices to change based on how …
0
votes
3answers
101 views
Bind to an attached behavior on a Storyboard
I have created an attached dependency property for Storyboards, with the intention of enabling me to call a method on my ViewModel when a Storyboard Completed event fires:
public …
3
votes
1answer
97 views
Is there a better way to self reference a type?
I'm finding lately a lot of code smells related to referencing generic classes in C#. My gripes especially apply to those classes which inherit from DependencyObject and contain De …
1
vote
2answers
86 views
Delayed “rendering” of WPF/Silverlight Dependency Properties?
Is there a way to know the first time a Dependency Property is accessed through XAML binding so I can actually "render" the value of the property when needed?
I have an object (cl …
1
vote
1answer
68 views
If we can’t bind a MouseBinding’s Command, what are we supposed to do?
I would love to be able to use a regular MouseBinding to capture a CTRL-Click event on my TextBlock. Unfortunately the Command property is not a dependency property and I'm using M …
5
votes
3answers
301 views
How can I create a custom *write-only* dependency-property?
I need to know what the procedure is for making a write-only dependency-property. I can see that the DependencyProperty class does not have a special "Register" method for write-on …
0
votes
2answers
71 views
Silverlight 2.0: Determine if a dependency property is set before changing it.
I have a dependency property (Foreground) on a custom control which is inheriting from Control. When I am loading the control, I want to see if the user has set the dependency pro …
0
votes
1answer
28 views
Difference among three kinds of dependency properties in .NET Workflow Foundation.
In .NET Workflow Foundation, there are three kinds of dependency proprieties: instance properties, meta properties, and attached properties. Can someone explain what the difference …
1
vote
2answers
129 views
How do I bind to this custom dependency property?
I have a DependencyProperty in my custom UserControl that looks like this:
public static readonly DependencyProperty ColumnWidthProperty =
DependencyProperty.Register("ColumnWi …
