A property in WPF and Silverlight that supports databinding, including styles, inheritance, animation, and default values. It allows you to set attached properties on DependencyObject.
0
votes
0answers
17 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
0answers
35 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
47 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 ...
0
votes
1answer
25 views
GridView does not refresh changes to items when using LayoutAwarePage.DefaultViewModel
In a "Blank App" (Visual C#, Windows Store), I create a new "Grouped Items Page", then declare a MyItemViewModel class deriving from DependencyObject with a Dependency Property for a String Title.
...
0
votes
1answer
10 views
Using dependency properties
I have I very simple WPF game:
It has a couple of buttons and some labels.
Every time the user clicks on a button I have a counter that I raise by 1.
I want to show to counter value on every label on ...
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
30 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
25 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
53 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
28 views
Removing all property changed callback of a given UIElement
I'm working with WebBrowser on windows phone.
Whenever from code-behind I instantiate a new WebBrowser, the costructor of the WebBrowser create a CustomAttachedDependencyProperty and a ...
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
44 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
46 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
39 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
1answer
38 views
Why is this Command Dependency Set Value Property not triggered? (DevExpress.AgMenuItem)
I am using the free version of the DevExpress Silverlight Menu (AgMenu 8.4). Sadly the MenuItems of this menu have no "Command" and "CommandParameter" properties.
I decided to inherit from the ...
0
votes
0answers
77 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
46 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
56 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
trigger a method when a method (associated with an object) has been called
i am calling some web services in my wp7 app using postClient (a dll incuded, which provides an interface to call the web services easily)
the sample code--->
PostClient wbclient = new ...
0
votes
0answers
56 views
Binding custom control property to textblock in code-behind
In my WP8 app, I would like to popup a question to a user, using the Coding4Fun MessagePrompt.
The body of the message contains a textblock (the question), another textblock called 'phonepadlabel' ...
0
votes
1answer
28 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
58 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
51 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
31 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
38 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
109 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
68 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
150 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
36 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
105 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
115 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
39 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
61 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
2answers
30 views
Simple User Control Databinding
I've been trying my hand at creating a simple user control with dependencyproperty and binding it, but it doesn't seem to work, not sure why. I'll just dive straight into code, please ignore the fact ...
0
votes
0answers
38 views
Exposing a ViewModel property through a DependencyProperty on a Control
I'm writing a control that is bound to a ViewModel. The ViewModel has a property ObservableCollection<string> SelectedNames that the control uses to bind to a ListBox. When the user types ...
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
40 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
48 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
68 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
100 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 ...
2
votes
1answer
58 views
property decorator initialization in python
I was wondering if anyone knew if there are any subtle differences in using @property and a regular property?
Are there any problems that may occur with initialization for a property when using the ...





