Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
2answers
20k 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 ...
15
votes
2answers
4k 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?
13
votes
3answers
7k views

How to I access an attached property in code behind?

I have a rectangle in my XAML and want to change it's "Canvas.Left" property in code behind: <UserControl x:Class="Second90.Page" ...
7
votes
1answer
6k views

Updating Custom Attached Property in Style Trigger with Setter

I was trying out attached properties and style triggers hoping to learn more about it. I wrote a very simple WPF windows app with an attached property: public static readonly DependencyProperty ...
6
votes
2answers
689 views

Setting focus to a control in WPF using MVVM

I want keyboard focus to be set to a TextBox when I click a Button on my view. I don't want to use any codebehind, so wondered if anyone had written an attached property or similar solution?
6
votes
1answer
3k views

When should I use FrameworkPropertyMetadata or UIPropertyMetadata over plain PropertyMetadata?

When looking at sample attached properties and behaviors, I've seen a mishmash of uses of FrameworkPropertyMetadata, UIPropertyMetadata and PropertyMetadata. Since they all form an inheritance ...
5
votes
5answers
3k views

Silverlight 4 Default Button Service

For a few months I have been successfully using David Justices Default Button example in my SL 3 app. This approach is based on an attached property. After upgrading to SL4, the approach no longer ...
5
votes
1answer
2k 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 = ...
4
votes
2answers
152 views

WPF Binding within an AttachedProperty of Type Collection to an other Element

I want to create an AttachedProperty of Type Collection, which contains references to other existing elements, as shown below: <Window x:Class="myNamespace.MainWindow" ...
4
votes
1answer
624 views

WPF Attached Property Data Binding

I try to use binding with an attached property. But can't get it working. public class Attached { public static DependencyProperty TestProperty = ...
4
votes
1answer
78 views

How are attached properties useful in LINQ?

I got this question during an interview in the past and never really dug into in, but I've put some thought into it lately and I can't come up with a good answer. When I think of attached properties ...
4
votes
1answer
1k views

Bind Grid.Row / Grid.Column inside a DataTemplate

Hope this is not a dupe. I would like to be able to do the following in XAML: <DataTemplate DataType="{x:Type TestApp:ButtonVM}"> <Button ...
3
votes
1answer
117 views

Visual Studio Designer Attached Properties

I am using attached properties to allow some design-time behaviour in the Visual Studio WPF designer i.e. design-time view-model data. The issue I'm having is that when attached property events fire ...
3
votes
1answer
175 views

Wpf styles and attached properties

I've been playing with behaviors and I came across a interesting issue. Here is my behavior: public class AddNewBehavior : BaseBehavior<RadGridView, AddNewBehavior> { public static readonly ...
3
votes
1answer
1k views

Attached Property Changed Event?

ist there a way to get a change notification if an attached property changed? A simple example is a Canvas with a Rectangle in it. The position of the Rectange is set by using the DepenendyProperties ...
3
votes
2answers
881 views

Silverlight ComboBox Attached Behavior

I am trying to create an attached behavior that can be applied to a Silverlight ComboBox. My behavior is this: using System.Windows.Controls; using System.Windows; using ...
3
votes
2answers
644 views

Reducing boilerplate code in MVVM WPF app for attached properties, commands, etc?

I'm working on a WPF MVVM application. The thing that I'm noticing is that I have to write an inordinate amount of boilerplate code just to declare commands (through DelegateCommands from the WPF ...
2
votes
1answer
69 views

Public vs Private AttachedProperties

Where does it make sense to have AttachedProperties as private vs public? Usually it is define as (example): public static readonly DependencyProperty CommandProperty = ...
2
votes
1answer
275 views

Binding an attached property to an item in ItemsControl with custom panel problem

I can't get the following XAML to work as I want. All bindings work because get no errors from the bindings. But I don't get the expected result from the binding on the RatioShape rectangle. The ...
2
votes
1answer
92 views

WPF/Silverlight: Attached Properties and Garbage Collection

Lets say I've got a textbox and an attached property called Foo.Bar. <Textbox local:Foo.Bar="5" /> Does the attached property hold a strong reference to the textbox?
2
votes
1answer
102 views

Unity in attached properties

I need to create an attached property which communicates with some service inside it's PropertyChanged event handler. E. g. private static void IsRegisteredPropertyChanged(DependencyObject target, ...
2
votes
1answer
90 views

Attached properties order

What is the order in which attached properties are applied to an object ? I guess I should ignore this, but here my scenario: I've got an attached property to stick the VM to the View, and then, ...
2
votes
2answers
314 views

How can a WPF Canvas child's attached top/bottom/left/right property be removed?

Perhaps I am missing something simple here, but I am unable to find a method to remove an attached property from a item contained by a canvas. Code example: //Add an image to a canvas; set the ...
2
votes
1answer
196 views

Why is an attached property of type BindingExpression not evaluated when placed within a DataTemplate?

I have defined an attached property for Selector of type BindingExpression in order to catch a binding so I can clone it onto multiple properties. The attached property works fine when the Selector ...
2
votes
2answers
810 views

How to bind to attached property in XAML, WPF

I would like to bind the User.Password property to PasswordBox (TwoWay). Since PasswordBox.Password is not bindable, I made AttachedProperties to fix this (one to activate the binding, and one to hold ...
2
votes
2answers
325 views

How do I get the X,Y position of a UserControl within a Canvas?

I have a simple UserControl implemented as below - which I place in a Canvas. I move it using Multi-touch and I want to be able to read its new X,Y postion using procedural C# code. Ideally I would ...
2
votes
1answer
218 views

Custom XAML property

I've seen a library that allows me to do this inside my XAML, which sets the visibility of the control based on whether or not the user is in a role: s:Authorization.RequiresRole="Admin" Using that ...
2
votes
2answers
396 views

WPF attached properties not firing code behind when set in xaml

I have a custom ClockFace UserControl which has properties to allow colors, font and hands (as a Path objects) to be changed. This is used in custom TimePicker and Clock UserControls. In these parent ...
2
votes
5answers
176 views

What are the various uses of Attached Properties?

I've seen some really varying uses of AttachedProperties so far in my adventures in WPF, and am wondering, what are some of the various uses? I've seen fairly mundane uses, such as those found in ...
2
votes
2answers
367 views

WPF TextBox lostfocus as attached property

I have a Grid with many TextBoxes and I want to call NotifyPropertyChanged() method to update some other controls everytime one of these TextBox-es changed the value = lost the focus (I don't want ...
2
votes
1answer
500 views

SortDescription with custom attached property

In Xaml I can set a custom attached property using local:TestClass.TestProperty="1" An I can bind to a custom attached property using {Binding Path=(Namespace:[OwnerType].[PropertyName])} {Binding ...
2
votes
1answer
447 views

Cannot convert the value in attribute '[attr]' to object of type 'System.Windows.TemplateBindingExtension'

I get this error when I define my attached dependency properties in a class outside the class hierarchy and set the owner to a common parent class. Attached dependency property in WindowBase class ...
2
votes
1answer
160 views

How to expose xaml properties?

I created a ComboBox subclass and added my functionality. Now I want to expose external properties of the TextBox for example: <a:MyComboBox SpellCheck.IsEnabled="True" ...
2
votes
2answers
334 views

Garbage Collection when Attached dependencyobject is destroyed \ disconnected

When we use any attached property against any dependency object, I thunk it actually maps the property and the value with the dependency object. E.g. <DockPanel><TextBlock x:Name="MyText" ...
2
votes
1answer
436 views

binding element focus with an attached property?

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 = ...
2
votes
1answer
2k views

XAML:The attachable property VisualStateGroups was not found in type VisualStateManager

I'm using VS2008 EE SP1 + WPF + XAML. In the beginning I added a reference to it: xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows" I'm getting this error while compilation: ...
2
votes
2answers
279 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 ...
2
votes
2answers
3k views

Add DataBinding for attached Property per Code Behind

I want to add a DataBinding per Codebehind for a attached Property and want to show the Canvas .Leftproperty in a textbox. How do I add this property?
1
vote
1answer
45 views

Convert ComboBox.TextBlock XAML to C#

I have the following fragment of XAML: <ComboBox Name="comboBox1" IsEditable="True" Text="test" TextBlock.TextAlignment="Right" /> How do I convert that to C#? In particular, ...
1
vote
1answer
44 views

Does the .NET framework have any attached properties or attached behaviors built into it?

I'm basically curious if any Microsoft code (.NET Framework) has any files that show attached properties and attached behaviors. I'm aware of numerous examples out there on the internet, but I'm more ...
1
vote
2answers
46 views

AttachedProperty to an object?

I used this "guide", but the difference is that I don't want to restrict the object Im attaching the property on, to UIElement I'd like to attach a property to the most generic item : object, so here ...
1
vote
2answers
52 views

Why does my Attached Property show in Blend designer but not in VS2010?

I have an attached property and I am registering it with the designer using a design-time assembly. I am using the AttachedPropertyBrowsableForTypeAttribute so that the property will be shown when a ...
1
vote
2answers
34 views

Un-subscribing from CollectionChanged event of a collection stored in an attached property

Ok, so I have an attached property (declared in a static class) which attaches an INotifyCollectionChanged property to an object. When the property is set, I want to start monitoring the collection ...
1
vote
1answer
81 views

Can't bind an attached property to another dependency property

I' writing a control library. In this library there are some custom panels which are populated with user UIElements. Since every child element in my lib must have a "Title" property, I wrote the ...
1
vote
2answers
116 views

Attached Event? How to remove ScrollChanged event handler for WPF DataGrid at runtime

The WPF DataGrid class (Not the Windows Forms DataGrid!) can be set up to automatically handle scrolling without an external ScrollViewer and it's possible to register an event handler for the ...
1
vote
1answer
36 views

Adding a property to a silverlight 4 control to add functionality

I am curious how I can add a property to add functionality to a control. Currently I am just extending controls, but I was curious if it is possible to add a property to add functionality to a ...
1
vote
2answers
137 views

Attached Properties

I am a little confused about WPF attached properties. When you use an attached property that attached property can only be read and used by the class that defines it correct? For example if I wanted ...
1
vote
1answer
106 views

How to use Attached property within a style?

I have created an Image within a ButtonStyle. Now I have created an Attached Property so that I can set the Source for that Image. Should be straight forward but I am stuck with it. This is my ...
1
vote
2answers
35 views

Problem reading AttachedProperty in ControlTemplate

This is my attached property: public class MyButtonThing { public static string GetText2(DependencyObject obj) { return (string)obj.GetValue(Text2Property); } public static ...
1
vote
1answer
149 views

Reading Attached Property from Non-DependencyObject

XAML lets me attach properties to types that are not derived from DependencyObject. For example, I could give names to the CommandBindings on a Window: <Window.CommandBindings> ...

1 2 3