0
votes
1answer
23 views
Using enum as a dependency property in WPF
I try to use enum type as a dependency property in my custom control, but always get an error:
public enum PriceCategories
{
First = 1,
Second = 2,
Third = 3,
…
1
vote
1answer
22 views
WPF Dependency Property for Custom Control
I'm a bit in a mess with how to set a Dependency Property for Custom Control.
I created Custom Control, so it derives from Control class.
public class CustControl : Control
{
static …
2
votes
5answers
558 views
Silverlight: How to receive notification of a change in an inherited DependencyProperty
I have a control which inherits from (you guessed it) Control.
I want to receive a notification whenever the FontSize or Style properties are changed. In WPF, I would do that by calling …
0
votes
4answers
337 views
Is there a notification mechanism for when a dependency property has changed?
In a Silverlight application I'm trying to find out when a property on a usercontrol has changed. I'm interested in one particular DependencyProperty, but unfortunately the control itself doesn't …
0
votes
1answer
33 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
45 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
0answers
14 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 …
0
votes
1answer
31 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 …
1
vote
1answer
23 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
27 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
48 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:
<!-- …
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 inherit dependency …
1
vote
2answers
47 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), …
1
vote
1answer
62 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 …
5
votes
2answers
120 views
Why dependency properties?
Why did Microsoft go the route of making dependency properties and dependency objects instead of using reflection and maybe attributes?
