0
votes
1answer
29 views
DependencyProperty Callback-Method not called
Hi,
I create a UserControl (TableWithFilter.xaml) with a dependency property (source). The UserControl is a Table with a source property for the different items. I created the XAML and set the source …
0
votes
2answers
39 views
How can make all my user control dependency values load before they control accesses their values?
When I call this custom control, I have to put the attribute values in the correct order since the third dependency property (ItemTypeIdCode) accesses the values of the first two (KeyField, …
0
votes
1answer
19 views
Why does my Custom UserControl’s dependency property not work with binding?
My Custom UserControl's dependency property will bind correctly if the value is statically defined in the XAML calling it, like this:
ItemTypeIdCode="addresses"
but not if the value is bound …
0
votes
0answers
13 views
workflow dependency property
I have a Person class with a name property.
I have a custom activity that have this Person object as a dependency property.
Now when I drop this custom activity into the workflow designer. I can …
1
vote
1answer
15 views
Add sub categories to a Dependency Property in a Workflow Activity
Hi all,
I wish to create an workflow activity that has a dependancy property structure like this
Setting
Wait Period
Days
Hours
Mins
At the moment the code below will show Setting with the …
0
votes
1answer
20 views
Exposing DataGrid SelectedItem in parent UserControl in WPF
Hi there,
I have a User Control with a Data Grid inside it which i re-use in a couple of different Pages and am using M-V-VM.
How can I / is it possible to expose the Data Grid's SelectedItem …
2
votes
3answers
45 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 example:
<!-- …
1
vote
2answers
42 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'm using WPF 4), …
0
votes
1answer
52 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 dependency property and …
1
vote
1answer
33 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 then select when …
0
votes
2answers
49 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 bound property in …
5
votes
2answers
118 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
53 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"
…
0
votes
0answers
26 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, which forms an SQL …
1
vote
3answers
32 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 on foo
// Set some …
