Tagged Questions
The attached-properties tag has no wiki summary.
7
votes
4answers
299 views
Difference between Attached and non-Attached Dependency Properties in Silverlight
Okay Stackers, I've spent a good couple of hours on this question, and I want to know if anybody has a definitive answer.
For all the research I've done, I can't find ANY difference between .Register ...
7
votes
1answer
1k views
Attached property of type list
I want to create an attached property that can be used with this syntax:
<Button>
<Image .../>
<ui:ToolbarItem.DisplayFilter>
<TabItem .../>
<TabItem .../>
...
4
votes
3answers
4k views
How exactly do Attached Properties work in WPF?
I'm a bit mystified as to how Attached Properties actually convey their values to either parent or child elements. TextElement.FontFamily causes child elements to inherit the value assigned to that ...
3
votes
2answers
78 views
WPF/Attached Properties - Please explain why this works
Please help me understand where the value "ABC" gets stored. When I run memory profilers I don't see any instance of MyClass, and in fact the binding works and the GroupBox.Header gets the value ...
3
votes
1answer
969 views
How do I handle Canvas.Top change event in WPF?
I have an element positioned on Canvas using attached properties Canvas.Top and Canvas.Left. Then using animations the element is moved to different set of coordinates, like this:
DoubleAnimation ...
2
votes
1answer
166 views
Silverlight: How to add a Dependency Property to multiple controls?
Is it possible to create a Dependency Property for multiple controls without resorting to subclass every one of it?
I thought about using Attached Properties but they nest only one level deep as far ...
1
vote
1answer
138 views
Blend WPF property was already registered
I'm creating a custom Panel class called PageNavigator. I want to attach a "Location" property to all children in my panel. This is the code inside PageNavigator.cs I've written to do that.
public ...
1
vote
1answer
61 views
Dependency Properties - How to add an owner so it acts as an attached property?
Basically, is there any way to add an owner to a DependenyProperty so that it becomes an attached property of that new owner? That way I can do something like:
PrimaryControl - Original Owner
...
1
vote
4answers
166 views
How can an AttachedProperty have multiple values?
How can an AttachedProperty which is a single property defined by an owning parent element, be set with multiple values through several child elements of that parent ?
For example:
If i have:
...
0
votes
2answers
34 views
For a WPF AttachedProperty, can you validate the value based on the type you're attaching to?
In short, we're creating an attached property that's only to be applied to FrameworkElement or one of its subclasses. What we want is to block the set if it's being applied to anything that's not.
...
0
votes
2answers
108 views
Attached Properties in XAML without the word 'Property'
MS defines attached properties like 'Grid.RowProperty' and 'Grid.ColumnProperty', but in XAML you just call it with 'Grid.Row' and 'Grid.Column'
I tried doing the same with an attached property ...
0
votes
1answer
248 views
Custom WPF EndLineCap, StartLineCap & LineJoin or new attached properties
Just wondering if anyone knows how I would implement additional/custom EndLineCap, StartLineCap & LineJoin attributes?
In short, LineJoin="Round" is what I want but I need both sides of the ...
0
votes
1answer
824 views
Custom Image Button and Radio/Toggle Button from Common Base Class
I would like to create a set of custom controls that are basically image buttons (it's a little more complex than that, but that's the underlying effect I'm going for) that I've seen a few different ...