1
vote
1answer
27 views
binding element focus with an attached property?
Hi guys, I'm trying to bind focus for my control to a property on the view model, like this:
public class Focus
{
public static readonly DependencyProperty HasFocusProperty = …
0
votes
1answer
82 views
What’s wrong with my datatrigger binding?
I have created an attached property to extend a Button class with additional state:
<Button v:ExtensionHelper.OperationMode="{Binding MyObject.OperationMode}" Command="{Binding MyObject.Select}" …
0
votes
1answer
83 views
Bind to attached property in ControlTemplate - Silverlight
I have this style:
<Style x:Key="ButtonStyle" TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate …
0
votes
3answers
95 views
Silverlight DataGridColumn AttachedProperties
I am attempting to create an AttachedProperty for a DataGridColumn within Silverlight 3.0 and I am having some issues.
Here is the AttachedProperty:
public class DataGridColumnHelper
{
public …
5
votes
3answers
2k views
What does InitializeComponent() do, and how does it work? (WPF)
What does InitializeComponent() do, and how does it work? (WPF)
In general first, but I would especially be interested to know the gory details of order of construction, and what happens when there …
1
vote
2answers
44 views
How to serialize attached properties
Hello everyone,
I am writing .NET3.5, WPF application using Composite Application Library. Application is divided into several modules.
In infrastructure module I have defined NetworkNode object. …
0
votes
1answer
76 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 Behaviors but want to …
0
votes
1answer
285 views
How do I make an AttachedProperty the target of a MultiBinding?
I've been working with the WPF DataGrid and trying to centralize my cell style. During this refactor, I came across a need for my cell style to know validation logic that is different for each column. …
0
votes
1answer
206 views
What’s the difference between a dependency property and an attached property in WPF?
What's the difference between a (custom) dependency property and an attached property in WPF? What are the uses for each? How do the implementations typically differ?
1
vote
1answer
265 views
WPF - Handling custom attached events on custom controls
I have a routed event declared as such (names have been changed to protect the innocent):
public class DragHelper : DependencyObject {
public static readonly RoutedEvent DragCompleteEvent = …
0
votes
1answer
64 views
Where to put the XML documentation comments for an attached property ?
Hi all,
Assuming I have an attached property defined like that :
public static string GetMyProperty(DependencyObject obj)
{
return (string)obj.GetValue(MyPropertyProperty);
}
…
0
votes
2answers
260 views
WPF does not seem to find a custom attached property
I am trying to bind a property (Button.Background) to a property on my custom attached property.
In a C# file I have
public static class Square
{
public static readonly DependencyProperty …
0
votes
0answers
224 views
Silverlight 3: Expose Validation.GetHasError on custom control
I have written a custom UserControl that is embedded into another UserControl. Something like the simple diagram below.
UserControl_A
UserControl_B
TextBox_1
CheckBox_1
Button_Save
In …
1
vote
1answer
104 views
RegisterAttached String PropertyName causing AttachedProperty to not fire
I've run into an odd problem with attached properties where when I assign the property name in the call to RegisterAttached and name properly for the name of the attached property (say …
1
vote
2answers
141 views
Attached Collection Items Losing Data Context
I created an attached property, AttachedBehaviorsManager.Behaviors that is to be used as an MVVM helper class that ties events to commands. The property is of type BehaviorCollection (a wrapper for …
