2
votes
3answers
24 views
WPF: How to accept both string and FrameworkElement in dependency property (like wpf Label does)?
Hi, I am creating a custom WPF control that should have several content slots.
I'd like the user to be able to use either string, or a FrameworkElement as a value of property, for …
2
votes
4answers
2k views
Hiding inherited members in C#
I'm looking for some way to effectively hide inherited members. I have a library of classes which inherit from common base classes. Some of the more recent descendant classes inh …
1
vote
2answers
33 views
Can a WPF window inherit property values from its owner window?
I'd like the child windows in my application to inherit WPF dependency properties from their parent window.
If I set TextOptions.TextRenderingMode="ClearType" on my main window (I …
0
votes
1answer
40 views
WPF ReadOnly Dependency Properties using MVVM
Hi,
I've recently overridden the DevXpress WPF grid to give myself a SelectedObject property that I can access from my loosely bound ViewModel.
I've made a SelectedObject depende …
5
votes
2answers
106 views
Why dependency properties?
Why did Microsoft go the route of making dependency properties and dependency objects instead of using reflection and maybe attributes?
0
votes
2answers
34 views
Issue binding Silverlight Custom Control dependency property to Model property
Hi, I have a data navigation user control in Silverlight which opens a child window where the user can enter search criteria and when they press 'Apply' it's suppose to update the …
1
vote
1answer
15 views
Add multiple Property Metadata to a Dependency Property in a Workflow Activity
Hi,
I am building a number of Custom Activities in Windows Workflow and I need to add a DependencyProperty which can list a number of values for that property which the user can t …
0
votes
2answers
44 views
How to design a wpf dependeny Property to support the path to image ?
To describe my problem i have created a small application.
At first the Usercontrol:
<UserControl x:Class="WpfApplication10.UserControl1"
xmlns="http://schemas.microsoft.co …
0
votes
0answers
25 views
Defining TextEdit DependencyProperty
Hello, I try to define TextEdit DependencyProperty, because I want to get a TextEdit "Text" value, which was inputed by user. Then I want to use this value in another static class, …
1
vote
5answers
588 views
Java .properties file, how to reference already defined property later, dir.default=/home/data/in/
define a default directory for Input files
dir.default=/home/data/in/
dir.proj1=dir.default /p1
dir.proj2=dir.default /p2
dir.proj3=dir.default /p3
is this possible?
1
vote
1answer
240 views
How to set the final value of an Animation to the property when the Animation finishes or is canceled?
I try to animate a DependencyProperty from a value to a target value (in code) and when the animation finishes (or is canceled) set the final value to the property. The final value …
2
votes
2answers
327 views
How do I make Binding respect DependencyProperty value coercion?
I have a control with a DependencyProperty with a CoerceValueCallback.
This property is bound to a property on a model object.
When setting the control property to a value that ca …
1
vote
3answers
26 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
110 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 …
0
votes
1answer
86 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 …
