0
votes
2answers
52 views

WPF Getter/Setter Not Being Called

I have the following code. The PropertyChanged event is being called but the getter and setter is not. I can't for the life of me see why not. I have other properties where the same thing is happening ...
0
votes
2answers
27 views

Combobox' SelectedItem bound to a DependencyProperty is not refreshing

I have a combobox, whose SelectedItem is bound to a dependency property. public IEnumerable<KeyValuePair<int,string>> AllItems { get { return _AllItems; } set { ...
0
votes
1answer
23 views

WPF Set Out of the Box Property to Inheritable

Is it possible to change the inheritance settings for a WPF property? Ideally, I would set ToolTipService.ShowDelay at the Window or UserControl level and everything in the visual tree would inherit ...
0
votes
0answers
21 views

WPF - Accessing GDPicture object in a viewmodel

I am using MVVM and somehow I should have access to GDpicture object in my viewmodel. here is the XAML <WindowsFormsHost x:Name="WindowsFormsHost1" Height="991" Width="1583"> ...
-1
votes
1answer
39 views

When is the PropertyChangedCallback fired

I have trouble understanding a problem that occured to me. I Have a UserControl that is structured somwhat like this. public class SomePage : Page { public static readonly DependencyProperty ...
0
votes
2answers
51 views

WPF binding does not work with a UserControl

In my MainViewModel I have a property, which is set by the user. When a new value is received, I would like to update information at my UserControl. The problem is the binding does not work. The way I ...
1
vote
2answers
31 views

Why a custom dependency property is not animated by a DoubleAnimation?

I have the following WPF window: <Window x:Class="AnimationTest.MainWindow" x:Name="main" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
2answers
33 views

Binding on DependencyProperty of custom User Control not updating on change

I'm having difficulties with databinding on my custom user control(s). I created an example project to highlight my problem. I'm completely new to WPF and essentially MVVM as well, so bear with me... ...
0
votes
0answers
27 views

DependencyProperty callback only executes from code and not XAML

I have the following DependencyProperty: public static readonly DependencyProperty ColumnsProperty = DependencyProperty.Register("Columns", typeof(ObservableCollection<GridColumn>), ...
0
votes
1answer
57 views

Why does my RoutedEvent use old value of DependencyProperty?

I need to raise an event on changing a DP (called CurrentItem) value of a UserControl (called MenuButton) to notify another UserControl to change its Title DP. Everything works fine except old-value ...
0
votes
0answers
60 views

Having difficulty with Dependency properties

I created my own CustomSlider (UserControl). See the code below: Code behind: public partial class CustomSlider : UserControl, INotifyPropertyChanged { public CustomSlider() ...
1
vote
1answer
30 views

How to use the DependencyProperties of a Blend Behavior during its initialization?

Here I have a simple Blend Behavior. It has a single DependencyProperty which I want to do something with during initialization in OnAttached. But I can't because the behavior appears to be attached ...
0
votes
1answer
45 views

How can I set the text of a label

I've got a usercontrol that I want to put in a FixedDocument, but before I do that I need to change the text of a label. I think I need to use Dependency Properties. Here's the simplified XAML. ...
2
votes
2answers
52 views

Why assigning an Integer to a Double Attached Properties gives error?

Assigning an Integer to a double is very much legal. If we can do double d = 3; d is assigned 3.0 but why this fails in Attached Properties? Scenario I created an Attached Property public ...
0
votes
0answers
47 views

xaml TranslateTransform.X binding to value

I'm relatively new to some of Xaml features.. I'm trying to implement this progressbar with an arrow on top that shows the progress indicator in addition to the filled bar. I used polygon to display ...
0
votes
1answer
40 views

My UserControl's DependencyProperty is not being set

I am having a problem with a DependencyProperty. I can't set my DependencyProperty to anything other than what I set as the default in DependencyProperty.Register(...) I have a UserControl that ...
0
votes
0answers
40 views

Using WPF dependency property between two projects

I'm kinda new to the WPF world. I have two projects, in one I define a dependency property and binding it to a checkBox. In the other I want to read the property value (true/false) and act ...
0
votes
0answers
79 views

WPF Binding to DependencyProperty of UserControl in DataTemplate is not working

i have a custom userControl with DPs and have the problem that the binding to these properties only works if i use the controls outside of datatemplates. Outside of Datatemplates works the ...
1
vote
2answers
47 views

Binding to dependency and regular properties in WPF

I started learning WPF few days ago and have been creating some test projects to evaluate my understanding of the materials as I learn them. According to this article, "a property can only be bound if ...
1
vote
1answer
59 views

WPF VB - TemplateBinding Fill on Custom User Control and XAML

Making my first WPF application and I'm having problems with a custom user control that I have created. The custom control is a little football shirt made with paths and two labels, one for name and ...
0
votes
1answer
29 views

wpf properties not set after initializecomponent

I have a problem concerning properties that are set in xaml. I've made a user control with a dependency property 'MidiChanel'. I set the value of this property to 10 in xaml. In the constructor of the ...
2
votes
1answer
59 views

How to correct this sample illustrating WPF DependencyProperty usage?

I am trying to run the code from the article "Dependency Properties in WPF" I've attached below. But app breaks on line SetValue(MyDependencyProperty, value); with exception: ...
2
votes
1answer
54 views

C# How to ensure the full load of a WPF control

I have a control to which i added a custom behavior. The behavior has two DependencyProperties: public SomeObject Player { get { return (e)GetValue(PlayerProperty); } set { ...
1
vote
2answers
41 views

How to keep ViewModel and View sync'ed using validation

I have a TextBox who is bound to my model (I realize this should be in the VM, but this is the way it is currently). I have ValidatesOnExcepion=true, but when my property setter validates and throws ...
1
vote
1answer
32 views

Adding custom attributes with unique content

I was looking for a way to add a custom property to a xaml control. I found this solution: Adding custom attributes to an element in XAML? Not is my question: How can I permit only unique content ...
0
votes
1answer
39 views

How can i get the value of the custom property?

I was looking for a way to add a custom property to a xaml control. I found this solution: Adding custom attributes to an element in XAML? Class1.cs: public static Class1 { public static ...
0
votes
1answer
45 views

Change in dependency property from code is not displayed

I've created a button, which is supposed to support wordwrapping. My XAML code for the button looks like this: <Button x:Class="POS.TouchScreen.UI.Elements.TouchButtonWPF" ...
0
votes
1answer
118 views

WPF CustomControl pass through of datatemplate to listbox not working

I am learning about custom controls and am making an autoCompleteTextBox as an example. I am creating the custom control for a WPF project (v 4.5 with vb.net 4.5) and it is using a textbox base ...
0
votes
1answer
30 views

Is there a way to create a secondary style on a user control?

Is it possible to create a DependencyProperty that acts as a secondary style? I would like to leave my default style in place, but I have a title bar that I would like to have its own style. I tried ...
0
votes
1answer
75 views

wpf dependency property error from custom control

I have a dependency property that is part of a custom control based on a textbox: in wpf 4.5, vb.net 4.5, visual studio 2012. Here is the property declaration: #Region "DEPENDENCY PROPERTIES -- ...
1
vote
3answers
156 views

Attached properties of WPF controls

I am still working on automated testing of WPF apps. I need to access properties by name to achieve this. Currently I am wondering about attached properties of WPF controls. I tried to iterate ...
1
vote
1answer
37 views

DependencyProperty not Written in Derived Class

I'm working with WPF/XAML and defined my own view based on window called container. container has a DependencyProperty called CurrentElementProperty linked to the property CurrentElement. My problem ...
1
vote
0answers
19 views

Setting a DependencyProperty to application resource causes memory leak

I have a custom UserControl (MyView) that contains one DependencyProperty called Header. This UserControl is part of several other UserControls (Views). It is resolved through DataTemplate <!-- ...
1
vote
2answers
106 views

Dependency Property Inheritance

i need my control to inherit the UIElement.IsEnabledProperty from an Ancestor of type Grid (Optionally Window or any other element i could wrap my grid with ) CS : below i override the meta data of ...
1
vote
1answer
39 views

Inheritable Dependency Properties

I have an assortment of user controls and I'm trying to see if I can create a base class for them with some dependency properties. Specifically, most of my user controls follow this format... ...
1
vote
2answers
120 views

Binding Dependency Property to Current DataContext Property

I keep trying to make this hurdle in WPF, and I think I've found a solution, albeit an ugly one. The scenario is as follows: I have a custom user control with a custom dependency property. The ...
0
votes
1answer
41 views

How to create a dependency property for a textbox

I am very new to wpf as well as Dependency properties.How can we create a dependency property for a TextBox that sets the text property of the TextBox from any other class in the solution.
1
vote
1answer
62 views

Math.Round with dependency properties, wierd behaviour

I have a dependency property 'Area' as : public double Area { get { return Math.Round((double)this.GetValue(AreaProperty),2); } set { this.SetValue(AreaProperty, value); } } ...
0
votes
3answers
72 views

How do I modify the setter value of a dependency property?

I have a simple dependency property. I have a user control with a button. I want the caller to set a property called MyName to "Hello". I want the dependency property code to append the string " ...
3
votes
1answer
32 views

On-The-Fly DependencyProperties

I have a class which calculates it's property on-the-fly, for example: class CircleArea { public double Radius { get; set; } public double Area { get { return ...
0
votes
0answers
42 views

Extend templated window main menu

I am making a template window design in WPF for future reuse. I make a lot of small dedicated tools for the project I am working on and would laike to have a consistent feel for the suite. So far I am ...
1
vote
1answer
49 views

Accessing value of DependencyProperty in Setter.Value Tag

I have a Control that changes it's color whe the Mouse gets over it. I tried to solve it by using a Style for the Control: <Style TargetType="{x:Type local:Control}"> <Setter ...
2
votes
2answers
69 views

How to invalidate visual on dependency property changed?

I have custom control with overridden OnRender method. I want to invalidate control when any dependency property is changed (including properties from parent type). How can i do this? Edit: As ...
4
votes
1answer
101 views

PropertyChanged is not attached

I've got a visual control in WPF, which takes advantage of dependency properties. These properties are backed by fields, which are classes, and sometimes there's a need to notify all bindings, that ...
0
votes
1answer
204 views

WPF MVVM Dependency Properties

I have the following situation: I have a User Control with just a single Grid inside. The Grid has its first column as a checkbox column, which is bound to the IsSelected property of CustomerModel ...
2
votes
2answers
83 views

Dependency property for buttons

I'm trying to create a boolean property for Buttons called 'IsVisibleWhenReadOnly'. I want this to be used on buttons in a StackPanel, so they can be visible or not depending on whether the data is ...
0
votes
1answer
63 views

How to make custom Dependency Property can be changed in real time when binding in wpf?

When we bind textblock.Text with the length of text of Textbox like this <TextBox x:Name="txtName" Grid.Row="0" /> <TextBlock Text="{Binding ElementName=txtName, Path=Text.Length}" ...
0
votes
2answers
237 views

wpf: changing the value of a Dependency Property from viewmodel

I have a custom usercontrol with a custom dependency property of type string. It should be bound twoway to a textbox, which is in a surrounding app, like this: <Textbox ...
0
votes
2answers
44 views

Custom DependencyProperty in ObservableCollection<t>

How add custom DependencyProperty? This method does not work. public class SongCollection : ObservableCollection<Song> { public static readonly DependencyProperty UrlProperty = ...
2
votes
1answer
81 views

DependencyProperty double that accepts “Auto” seems to work but throws errors

I want it to be possible to set a height property on a user control with the "Auto" string. public object ContentHeight { get { return GetValue(ContentHeightProperty); } set { ...

1 2 3 4 5 17