active questions tagged dependency-properties - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T19:20:43Zhttp://stackoverflow.com/feeds/tag/dependency-propertieshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1815177/dependencyproperty-callback-method-not-called0DependencyProperty Callback-Method not calledChameleon2009-11-29T10:21:28Z2009-11-29T16:03:44Z
<p>Hi,</p>
<p>I create a UserControl (TableWithFilter.xaml) with a dependency property (source). The UserControl is a Table with a source property for the different items. I created the XAML and set the source property via the XAML Binding. So far so good.</p>
<p>But if the value of the dependency property is changed, the defined callback method is not called. Therefore I cannot update the entries in my table. Has anyone an idea why the callback method is not called?</p>
<p>Here is the definition of my property in the class "TableWithFilter":</p>
<pre><code>Public Shared ReadOnly SourceProperty As DependencyProperty = _
DependencyProperty.Register("Source", GetType(List(Of TableViewItem)), GetType(TableWithFilter), _
New FrameworkPropertyMetadata(Nothing, New PropertyChangedCallback(AddressOf TableWithFilter.ChangeSource)))
</code></pre>
<p>and the Callback method:</p>
<pre><code> Private Shared Sub ChangeSource(ByVal source As DependencyObject, ByVal e As DependencyPropertyChangedEventArgs)
Dim table As TableWithFilter = source
table.Source = e.NewValue
End Sub
</code></pre>
<p>and here the XAML:</p>
<pre><code><Border Grid.Row="1" Grid.Column="1" BorderBrush="{StaticResource ElementBorder}" BorderThickness="1">
<local:TableWithFilter x:Name="SearchResultTable" Source="{Binding Source={StaticResource contentFacade}, Path=ContentList}" />
</Border>
</code></pre>
<p>If the attribute "ContentList" is changed I expet that the "ChangeSource" method in the TableWithFilder class is called. But this is not the case. After I changed the ContentList attribute, I Raise the following Event:</p>
<pre><code>RaiseEvent PropertyChanged(Me, New PropertyChangedEventArgs("ContentList"))
</code></pre>
<p>Thx for any ideas.</p>
http://stackoverflow.com/questions/1811265/how-can-make-all-my-user-control-dependency-values-load-before-they-control-acces0How can make all my user control dependency values load before they control accesses their values?Edward Tanguay2009-11-28T01:36:46Z2009-11-28T02:10:01Z
<p>When I call this custom control, I have to put the attribute values in the <strong>correct order</strong> since the third dependency property (<strong>ItemTypeIdCode</strong>) accesses the values of the first two (<strong>KeyField, ValueField</strong>) to look up data in the database, and if they come after the first attribute, then their values are empty.</p>
<pre><code><controls:DropDown x:Name="TheItemTypes"
KeyField="idCode" ValueField="title"
ItemTypeIdCode="itemTypes"
Width="150" HorizontalAlignment="Left" Margin="0 0 0 5"/>
</code></pre>
<p><strong>How can I make the order of my user control attributes arbitrary?</strong> i.e. so that they all load their values first before any of them register as changed?</p>
<p>Here is the code for my user control:</p>
<pre><code>using System.Windows;
using System.Collections.Generic;
using TestApp.DataLayer;
namespace TestApp.Controls
{
public partial class DropDown : DependencyComboBox
{
#region DependencyProperty: ItemTypeIdCode
public string ItemTypeIdCode
{
get
{
if (GetValue(ItemTypeIdCodeProperty) != null)
return GetValue(ItemTypeIdCodeProperty).ToString();
else
return "";
}
set { SetValue(ItemTypeIdCodeProperty, value); }
}
public static readonly DependencyProperty ItemTypeIdCodeProperty =
DependencyProperty.Register("ItemTypeIdCode", typeof(string), typeof(DropDown),
new PropertyMetadata(string.Empty, OnItemTypeIdCodePropertyChanged));
private static void OnItemTypeIdCodePropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
DropDown dropDown = dependencyObject as DropDown;
dropDown.OnPropertyChanged("ItemTypeIdCode");
dropDown.OnItemTypeIdCodePropertyChanged(e);
}
private void OnItemTypeIdCodePropertyChanged(DependencyPropertyChangedEventArgs e)
{
Items.Clear();
foreach (var kvp in Datasource.GetInstance().GetKeyValues(ItemTypeIdCode + "(" + KeyField + "," + ValueField + "); all; orderby displayOrder"))
{
Items.Add(new KeyValuePair<string, string>(kvp.Key, kvp.Value));
}
this.SelectedIndex = 0;
}
#endregion
#region DependencyProperty: KeyField
public string KeyField
{
get
{
if (GetValue(KeyFieldProperty) != null)
return GetValue(KeyFieldProperty).ToString();
else
return "";
}
set { SetValue(KeyFieldProperty, value); }
}
public static readonly DependencyProperty KeyFieldProperty =
DependencyProperty.Register("KeyField", typeof(string), typeof(DropDown),
new PropertyMetadata(string.Empty, OnKeyFieldPropertyChanged));
private static void OnKeyFieldPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
DropDown dropDown = dependencyObject as DropDown;
dropDown.OnPropertyChanged("KeyField");
dropDown.OnKeyFieldPropertyChanged(e);
}
private void OnKeyFieldPropertyChanged(DependencyPropertyChangedEventArgs e)
{
}
#endregion
#region DependencyProperty: ValueField
public string ValueField
{
get
{
if (GetValue(ValueFieldProperty) != null)
return GetValue(ValueFieldProperty).ToString();
else
return "";
}
set { SetValue(ValueFieldProperty, value); }
}
public static readonly DependencyProperty ValueFieldProperty =
DependencyProperty.Register("ValueField", typeof(string), typeof(DropDown),
new PropertyMetadata(string.Empty, OnValueFieldPropertyChanged));
private static void OnValueFieldPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
DropDown dropDown = dependencyObject as DropDown;
dropDown.OnPropertyChanged("ValueField");
dropDown.OnValueFieldPropertyChanged(e);
}
private void OnValueFieldPropertyChanged(DependencyPropertyChangedEventArgs e)
{
}
#endregion
public DropDown()
{
InitializeComponent();
DataContext = this;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1804212/workflow-dependency-property0workflow dependency propertypdiddy2009-11-26T15:09:45Z2009-11-27T15:10:19Z
<p>I have a Person class with a name property. </p>
<p>I have a custom activity that have this Person object as a dependency property. </p>
<p>Now when I drop this custom activity into the workflow designer. I can see the Person in the property grid. </p>
<p>From the designer I'd like to be able to specify the name of the person. </p>
<p>Is this possible? Or the only way is to really create a Name property in my Custom activity.</p>
http://stackoverflow.com/questions/1808204/why-does-my-custom-usercontrols-dependency-property-not-work-with-binding0Why does my Custom UserControl's dependency property not work with binding?Edward Tanguay2009-11-27T11:29:12Z2009-11-27T12:12:07Z
<p>My Custom UserControl's dependency property <strong>will</strong> bind correctly if the value is <strong>statically</strong> defined in the XAML calling it, like this:</p>
<pre><code>ItemTypeIdCode="addresses"
</code></pre>
<p>but not if the value is bound <strong>dynamically</strong> itself:</p>
<pre><code>ItemTypeIdCode="{Binding ItemTypeIdCode}"
</code></pre>
<p><strong>What do I have to do to my custom UserControl so that it's dependency property reacts to the value that is bound itself in another control?</strong></p>
<p>Here is my code:</p>
<p><strong>XAML:</strong></p>
<pre><code><Window x:Class="TestDepenProp.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:TestDepenProp.Controls"
Title="Window1" Height="300" Width="300">
<StackPanel
HorizontalAlignment="Left"
Margin="10">
<controls:DropDown
ItemTypeIdCode="{Binding ItemTypeIdCode}"
SelectedValue="672"
Width="150"
Margin="0 0 0 5"/>
<TextBlock Text="{Binding ItemTypeIdCode}"/>
</StackPanel>
</Window>
</code></pre>
<p><strong>Code-Behind:</strong></p>
<pre><code>using System.Windows;
using System.ComponentModel;
namespace TestDepenProp
{
public partial class Window1 : Window, INotifyPropertyChanged
{
#region ViewModelProperty: ItemTypeIdCode
private string _itemTypeIdCode;
public string ItemTypeIdCode
{
get
{
return _itemTypeIdCode;
}
set
{
_itemTypeIdCode = value;
OnPropertyChanged("ItemTypeIdCode");
}
}
#endregion
public Window1()
{
InitializeComponent();
DataContext = this;
ItemTypeIdCode = "addresses";
}
#region INotifiedProperty Block
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
}
</code></pre>
<p><strong>DropDown.xaml:</strong></p>
<pre><code><UserControl x:Class="TestDepenProp.Controls.DropDown"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel>
<ComboBox SelectedValuePath="Key"
DisplayMemberPath="Value"
SelectedValue="{Binding SelectedValue}"
Margin="0 0 0 10"
ItemsSource="{Binding DropDownValues}" />
</StackPanel>
</UserControl>
</code></pre>
<p><strong>DropDown.xaml.cs:</strong></p>
<pre><code>using System.Windows;
using System.Windows.Controls;
using System.ComponentModel;
using System.Collections.ObjectModel;
using System.Collections.Generic;
namespace TestDepenProp.Controls
{
public partial class DropDown : UserControl, INotifyPropertyChanged
{
public static readonly DependencyProperty ItemTypeIdCodeProperty = DependencyProperty.Register("ItemTypeIdCode", typeof(string), typeof(DropDown));
public string ItemTypeIdCode
{
get { return (string)GetValue(ItemTypeIdCodeProperty); }
set { SetValue(ItemTypeIdCodeProperty, value); }
}
#region ViewModelProperty: DropDownValues
private ObservableCollection<KeyValuePair<string, string>> _dropDownValues = new ObservableCollection<KeyValuePair<string, string>>();
public ObservableCollection<KeyValuePair<string, string>> DropDownValues
{
get
{
return _dropDownValues;
}
set
{
_dropDownValues = value;
OnPropertyChanged("DropDownValues");
}
}
#endregion
#region ViewModelProperty: SelectedValue
private string _selectedValue;
public string SelectedValue
{
get
{
return _selectedValue;
}
set
{
_selectedValue = value;
OnPropertyChanged("SelectedValue");
}
}
#endregion
public DropDown()
{
InitializeComponent();
DataContext = this;
Loaded += new RoutedEventHandler(DropDown_Loaded);
}
void DropDown_Loaded(object sender, RoutedEventArgs e)
{
GetDropDownValues();
}
void GetDropDownValues()
{
switch (ItemTypeIdCode)
{
case "addresses":
DropDownValues.Add(new KeyValuePair<string, string>("111", "762 Main St."));
DropDownValues.Add(new KeyValuePair<string, string>("222", "7384 First Ave."));
DropDownValues.Add(new KeyValuePair<string, string>("333", "8728 Second St."));
break;
case "customers":
DropDownValues.Add(new KeyValuePair<string, string>("672", "Jim Smith"));
DropDownValues.Add(new KeyValuePair<string, string>("281", "James Anders"));
DropDownValues.Add(new KeyValuePair<string, string>("321", "Angie Wonderson"));
DropDownValues.Add(new KeyValuePair<string, string>("221", "Hal Cloud"));
DropDownValues.Add(new KeyValuePair<string, string>("123", "Hugh Brandley"));
break;
default:
break;
}
}
#region INotifiedProperty Block
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
}
</code></pre>
http://stackoverflow.com/questions/1803934/add-sub-categories-to-a-dependency-property-in-a-workflow-activity1Add sub categories to a Dependency Property in a Workflow Activitykevchadders2009-11-26T14:20:34Z2009-11-26T16:45:47Z
<p>Hi all,</p>
<p>I wish to create an workflow activity that has a dependancy property structure like this</p>
<ul>
<li>Setting
<ul>
<li>Wait Period
<ul>
<li>Days</li>
<li>Hours</li>
<li>Mins</li>
</ul></li>
</ul></li>
</ul>
<p>At the moment the code below will show <strong>Setting</strong> with the <strong>Wait Period</strong> as an Integer, but now need to expand it out to 3 sub child properties for <strong>Days</strong>, <strong>Hours</strong> and <strong>Mins</strong>.</p>
<p>I understand i will have to change the <strong>Wait Period</strong>, but i'm not sure how to go about attaching the other 3 properties to it.</p>
<p>Any help would be appreciated... Thanks.</p>
<pre><code>public static DependencyProperty WaitPeriodProperty = DependencyProperty.Register("WaitPeriod", typeof(int), typeof(CheckActivity));
/// <summary>
/// Dependency property for 'Wait Period'
/// </summary>
///
[DescriptionAttribute("The email of the sender")]
[CategoryAttribute("Settings")]
public int WaitPeriod
{
get
{
return (int)(base.GetValue(CheckActivity.WaitPeriodProperty));
}
set
{
base.SetValue(CheckActivity.WaitPeriodProperty, value);
}
}
</code></pre>
http://stackoverflow.com/questions/1786485/exposing-datagrid-selecteditem-in-parent-usercontrol-in-wpf0Exposing DataGrid SelectedItem in parent UserControl in WPFandrej3512009-11-23T22:26:23Z2009-11-24T00:18:36Z
<p>Hi there,</p>
<p>I have a User Control with a Data Grid inside it which i re-use in a couple of different Pages and am using M-V-VM.</p>
<p>How can I / is it possible to expose the Data Grid's SelectedItem dependancy property as a dependancy property on the User Control which contains it??? </p>
<p>The goal being that in a Page using the control, i could bind the SelectedItem of the Grid to a property on the Page's view model. I'm not really concerned with changing the SelectedItem from the view model, mostly with having its current value to do some work.</p>
http://stackoverflow.com/questions/1777440/wpf-how-to-accept-both-string-and-frameworkelement-in-dependency-property-like2WPF: How to accept both string and FrameworkElement in dependency property (like wpf Label does)?Tomáลก Kafka2009-11-22T01:19:28Z2009-11-22T07:38:59Z
<p>Hi, I am creating a custom WPF control that should have several content slots.
I'd like the user to be able to use either string, or a FrameworkElement as a value of property, for example:</p>
<pre><code><!-- MyHeading is a string -->
<MyControl MyHeading="Hello World" />
<MyControl>
<!-- MyHeading is a FrameworkElement -->
<MyControl.MyHeading>
<Expander Header="Hello">
World
</Expander>
</MyControl.MyHeading>
</MyControl>
</code></pre>
<p>I know that WPF ContentControl does this (accepts both strings and other elements), and I know that it has something to do with <code>TypeConverter</code> attribute (<a href="http://blogs.windowsclient.net/rob%5Frelyea/archive/2008/04/10/strings-to-things-or-how-xaml-interprets-attribute-values.aspx" rel="nofollow">partially explained here</a>), but I tried to look at ContentControl, Label, TextBlock and other controls in Reflector, and didn't find any TypeConverter atrribute there, and googling didn't help.</p>
<p>I first tried to implemet it like this, but it obviously doesn't know about how to convert string to FrameworkElement, and throws exception during control's initialization:</p>
<pre><code>public FrameworkElement Heading
{
get { return (FrameworkElement)GetValue(HeadingProperty); }
set { SetValue(HeadingProperty, value); }
}
// Using a DependencyProperty as the backing store for Heading. This enables animation, styling, binding, etc...
public static readonly DependencyProperty HeadingProperty =
DependencyProperty.Register("Heading", typeof(object), typeof(DialogControl), new UIPropertyMetadata(new FrameworkElement()));
</code></pre>
<p>Then I tried to hack it like this:</p>
<pre><code>public object Heading
{
get { return (object)GetValue(HeadingProperty); }
set
{
if (value is string)
{
var tb = new TextBlock();
tb.Text = (string) value;
tb.FontSize = 20;
SetValue(HeadingProperty, tb);
}
else if (value is FrameworkElement)
{
SetValue(HeadingProperty, value);
} else
throw new ArgumentOutOfRangeException("Heading can take only string or FrameworkElement.");
}
}
// Using a DependencyProperty as the backing store for Heading. This enables animation, styling, binding, etc...
public static readonly DependencyProperty HeadingProperty =
DependencyProperty.Register("Heading", typeof(object), typeof(DialogControl), new UIPropertyMetadata(null));
</code></pre>
<p>but it is pretty ugly and still doesn't instantiate :(.</p>
<p>Anyone knows how to do it? Thanks for your time!</p>
http://stackoverflow.com/questions/1528/hiding-inherited-members-in-c2Hiding inherited members in C#MojoFilter2008-08-04T19:13:54Z2009-11-19T17:51:07Z
<p>I'm looking for some way to effectively hide inherited members. I have a library of classes which inherit from common base classes. Some of the more recent descendant classes inherit dependency properties which have become vestigial and can be a little confusing when using intellisense or using the classes in a visual designer.</p>
<p>These classes are all controls that are written to be compiled for either WPF or Silverlight 2.0. I know about <code>ICustomTypeDescriptor</code> and <code>ICustomPropertyProvider</code>, but I'm pretty certain those can't be used in Silverlight. </p>
<p>It's not as much a functional issue as a usability issue. What should I do?</p>
<p><strong>update:</strong>
Some of the properties that I would really like to hide come from ancestors that are not my own and because of a specific tool I'm designing for, I can't do member hiding with the <code>new</code> operator. (I know, it's ridiculous)</p>
http://stackoverflow.com/questions/1757810/can-a-wpf-window-inherit-property-values-from-its-owner-window1Can a WPF window inherit property values from its owner window?Daniel2009-11-18T17:46:44Z2009-11-18T23:32:22Z
<p>I'd like the child windows in my application to inherit WPF dependency properties from their parent window.</p>
<p>If I set TextOptions.TextRenderingMode="ClearType" on my main window (I'm using WPF 4), that value will apply to all child controls of the window.
How can I make those values also apply to all child windows? (Window instances with Owner set to my main window)</p>
<p>I want to be able to simply change the rendering mode on the main window, and the change should apply to the whole application.</p>
http://stackoverflow.com/questions/1749253/wpf-readonly-dependency-properties-using-mvvm0WPF ReadOnly Dependency Properties using MVVMAndy Clarke2009-11-17T14:26:38Z2009-11-17T20:28:41Z
<p>Hi,</p>
<p>I've recently overridden the DevXpress WPF grid to give myself a SelectedObject property that I can access from my loosely bound ViewModel.</p>
<p>I've made a SelectedObject dependency property and have it bound OneWayToSource in my XAML.</p>
<p>Everthing works fine, but if I try to make it ReadOnly (for completeness) I get a compile error and says I can't bind to a ReadOnly property. The code below compiles, I've included (but rem'd out) the bits I've been trying in my attempts to get the property ReadOnly.</p>
<p>Can anyone assist please?</p>
<p>The Dependency Property of my overridden control looks like:</p>
<pre><code> //public static readonly DependencyPropertyKey SelectedRowKey = DependencyProperty.RegisterReadOnly("SelectedObject", typeof(object), typeof(MyGrid), new PropertyMetadata(null));
//public static readonly DependencyProperty SelectedObjectProperty = SelectedRowKey.DependencyProperty;
public readonly static DependencyProperty SelectedObjectProperty = DependencyProperty.Register("SelectedObject", typeof(object), typeof(MyGrid), new PropertyMetadata(null));
public object SelectedObject
{
get
{
return GetValue(SelectedObjectProperty);
}
set
{
throw new NotImplementedException();
}
}
</code></pre>
<p>The XAML is:</p>
<pre><code> <StackPanel>
<devxgrid:MyGrid AutoPopulateColumns="True" DataSource="{Binding Animals}" SelectedObject="{Binding MyObject, Mode=OneWayToSource}" Width="300" Height="300">
<devxgrid:MyGrid.View>
<MyGrid:TableView AllowEditing="False" Name="GridView" AutoWidth="True" />
</devxgrid:MyGrid.View>
</devxgrid:MyGrid>
</StackPanel>
</code></pre>
http://stackoverflow.com/questions/1723756/why-dependency-properties5Why dependency properties?Mr Bell2009-11-12T17:01:26Z2009-11-15T10:28:26Z
<p>Why did Microsoft go the route of making dependency properties and dependency objects instead of using reflection and maybe attributes?</p>
http://stackoverflow.com/questions/1724816/issue-binding-silverlight-custom-control-dependency-property-to-model-property0Issue binding Silverlight Custom Control dependency property to Model propertyNick Gotch2009-11-12T19:37:02Z2009-11-13T19:57:10Z
<p>Hi, I have a data navigation user control in Silverlight which opens a child window where the user can enter search criteria and when they press 'Apply' it's suppose to update the bound property in the ViewModel (MVVM pattern.)</p>
<p>The links are: SearchDialog <--> DataNavigator <--> MyView <--> MyViewModel</p>
<p>The dependency property in SearchDialog seems to work, when I set its value, it shows up in DataNavigator; however when the dependency property changes, no notification seems to be sent from DataNavigator to MyView/MyViewModel.</p>
<p>SearchDialog derives from ChildWindow:</p>
<pre><code>public string Search
{
get { return (string)GetValue(SearchProperty); }
set { SetValue(SearchProperty, value); }
}
public static readonly DependencyProperty SearchProperty =
DependencyProperty.Register("Search", typeof(string), typeof(SearchDialog),
new PropertyMetadata(null));
</code></pre>
<p>DataNavigator derives from UserControl:</p>
<pre><code>public Binding Search { get; set; }
private void DataNavigator_Loaded(object sender, Windows.RoutedEventArgs e)
{
if (Search != null)
this._searchDialog.SetBinding(SearchDialog.SearchProperty, Search);
}
</code></pre>
<p>MyView derives from SilverlightFX.UserInterface.Navigation.Page:</p>
<pre><code><DataNavigator MovePreviousAction="$model.MovePrevious()"
CurrentIndex="{Binding CurrentIndex, Mode=TwoWay}"
MoveNextAction="$model.MoveNext()"
SaveAction="$model.SaveChanges()"
IsLoading="{Binding IsLoading, Converter={StaticResource VisibilityConverter}}"
Search="{Binding SearchString, Mode=TwoWay}"/>
</code></pre>
<p>MyViewModel derives from ViewModel:</p>
<pre><code>public string SearchString
{
get { return this._search; }
set
{
if(value != this._search)
{
this._search = value;
this.RaisePropertyChanged("SearchString");
}
}
}
</code></pre>
<p>I've been trying for hours to find the problem but haven't had any success; anyone see the issue? Thanks in advance,</p>
http://stackoverflow.com/questions/1728356/add-multiple-property-metadata-to-a-dependency-property-in-a-workflow-activity1Add multiple Property Metadata to a Dependency Property in a Workflow Activitykevchadders2009-11-13T10:20:03Z2009-11-13T19:24:12Z
<p>Hi,</p>
<p>I am building a number of Custom Activities in Windows Workflow and I need to add a DependencyProperty which can <strong>list</strong> a number of values for that property which the user can then select when using the activity.</p>
<p>e.g. True or False.</p>
<p>I know how to simply pass a default using the PropertyMetadata, and presume that I will have to pass a list/class now the PropertyMetadata?</p>
<p>Has anyone already got an example of how to do this please?</p>
<p>(Example Code below)</p>
<pre><code>public static DependencyProperty TestProperty = DependencyProperty.Register("Test", typeof(string), typeof(CheckActivity), new PropertyMetadata("True"));
/// <summary>
/// Dependency property for 'TestProperty'
/// </summary>
[DescriptionAttribute("Whether a True/False entry is required")]
[CategoryAttribute("Settings")]
[BrowsableAttribute(true)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)]
public string Type
{
get
{
return ((string)(base.GetValue(CheckActivity.TestProperty)));
}
set
{
base.SetValue(CheckActivity.TestProperty, value);
}
}
</code></pre>
http://stackoverflow.com/questions/1715046/how-to-design-a-wpf-dependeny-property-to-support-the-path-to-image0How to design a wpf dependeny Property to support the path to image ?Scott Olson2009-11-11T12:59:52Z2009-11-12T09:43:06Z
<p>To describe my problem i have created a small application.
At first the Usercontrol:</p>
<pre><code><UserControl x:Class="WpfApplication10.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Name="This" DataContext="{Binding ElementName=This}"
>
<Image Source="{Binding Path=MyImageSource}" ></Image>
</UserControl>
</code></pre>
<p>second the TestApp:</p>
<pre><code><Window x:Class="WpfApplication10.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:WpfApplication10="clr-namespace:WpfApplication10"
Title="Window1" Height="300" Width="300">
<WpfApplication10:UserControl1
MyImageSource="c:\test.png" >
</WpfApplication10:UserControl1>
</Window>
</code></pre>
<p>third the code behind the usercontrol</p>
<pre><code>using System.Windows;
using System.Windows.Controls;
using System.Windows.Media.Imaging;
namespace WpfApplication10
{
public partial class UserControl1 : UserControl
{
public static readonly DependencyProperty MyImageSourceProperty =
DependencyProperty.Register("MyImageSource",
typeof(BitmapImage),typeof(UserControl1),
new FrameworkPropertyMetadata((BitmapImage)new BitmapImage(),
FrameworkPropertyMetadataOptions.None
));
public BitmapImage MyImageSource
{
get { return (BitmapImage)GetValue(MyImageSourceProperty); }
set { SetValue(MyImageSourceProperty, value); }
}
public UserControl1()
{
InitializeComponent();
}
}
}
</code></pre>
<p>I know that the Type BitMapImage (of the DP) doesnt work in this way, but i want to know how to implement this feature in a clean, typesave way.
I want to reach the same behaviour like the original Image.Source implementation.</p>
<p>thanks in advance, Scott</p>
http://stackoverflow.com/questions/1699775/defining-textedit-dependencyproperty0Defining TextEdit DependencyPropertyVytas2009-11-09T08:39:32Z2009-11-09T08:39:32Z
<p>Hello, I try to define TextEdit DependencyProperty, because I want to get a TextEdit "Text" value, which was inputed by user. Then I want to use this value in another static class, which forms an SQL query depending on that entered "Text". My Dependency Property:</p>
<pre><code>public class FrameworkElement : UIElement
{
public static readonly DependencyProperty TextBoxEnteredValueProperty;
static FrameworkElement()
{
FrameworkPropertyMetadata metadata1 = new FrameworkPropertyMetadata(
new TextEdit(), FrameworkPropertyMetadataOptions.AffectsMeasure);
TextBoxEnteredValueProperty = DependencyProperty.Register("Text",
typeof(TextEdit), typeof(FrameworkElement));
}
public TextEdit TextBoxValueForText
{
set { SetValue(TextBoxEnteredValueProperty, value); }
get { return (TextEdit)GetValue(TextBoxEnteredValueProperty); }
}
}
</code></pre>
<p>Then I try to get a value, but everything what I get is "null" :</p>
<pre><code>public static string ExecuteCmd1(Window form)//, string CommandName, string[] Args)
{
object ddd = form.GetValue(FrameworkElement.TextBoxEnteredValueProperty); }
</code></pre>
<p>What I do wrong, can someone Help me with that? Thanks</p>
http://stackoverflow.com/questions/872272/java-properties-file-how-to-reference-already-defined-property-later-dir-defau1Java .properties file, how to reference already defined property later, dir.default=/home/data/in/yli2009-05-16T11:50:30Z2009-11-07T00:05:20Z
<h2>define a default directory for Input files</h2>
<p>dir.default=/home/data/in/</p>
<p>dir.proj1=dir.default /p1<br />
dir.proj2=dir.default /p2<br />
dir.proj3=dir.default /p3 </p>
<p>is this possible?</p>
http://stackoverflow.com/questions/589170/how-to-set-the-final-value-of-an-animation-to-the-property-when-the-animation-fin1How to set the final value of an Animation to the property when the Animation finishes or is canceled?Patrick Klug2009-02-26T04:59:58Z2009-11-06T04:51:57Z
<p>I try to animate a DependencyProperty from a value to a target value (in code) and when the animation finishes (<strong>or is canceled</strong>) set the <em>final</em> value to the property. The final value would be either the To value if the animation finishes or the <em>current</em> computed value (by the animation) when the animation is canceled.</p>
<p>By default the Animation doesn't have this behavior and an Animation doesn't change the actual value even if it has completed.</p>
<h3>A failed attempt</h3>
<p>A while ago I wrote this helper method to achieve the mentioned behavior:</p>
<pre><code>static void AnimateWithAutoRemoveAnimationAndSetFinalValue(IAnimatable element,
DependencyProperty property,
AnimationTimeline animation)
{
var obj = element as DependencyObject;
if (obj == null)
throw new ArgumentException("element must be of type DependencyObject");
EventHandler handler = null;
handler = (sender, e) =>
{
var finalValue = obj.GetValue(property);
//remove the animation
element.BeginAnimation(property, null);
//reset the final value
obj.SetValue(property, finalValue);
animation.Completed -= handler;
};
animation.Completed += handler;
element.BeginAnimation(property, animation);
}
</code></pre>
<p><strong>Unfortunately the Completed event doesn't seem to fire if the Animation is removed by someone calling BeginAnimation(property,null</strong>) and therefore I cannot set the final value correctly when an Animation is canceled. What is worse I cannot remove the event handler either...</p>
<p>Does someone know how to do this in a clean way?</p>
http://stackoverflow.com/questions/516210/how-do-i-make-binding-respect-dependencyproperty-value-coercion2How do I make Binding respect DependencyProperty value coercion?jesperll2009-02-05T14:51:06Z2009-11-03T04:38:22Z
<p>I have a control with a DependencyProperty with a CoerceValueCallback.
This property is bound to a property on a model object.</p>
<p>When setting the control property to a value that causes coercion the Binding pushes the <strong>uncoerced</strong> value to the model object. The property value on the control is coerced correctly.</p>
<p>How do I get the Binding to push the <strong>coerced</strong> value to the model object?</p>
<pre><code>void Initialize()
{
UIObject ui = new UIObject();
ModelObject m = new ModelObject();
m.P = 4;
Binding b = new Binding("P");
b.Source = m;
b.Mode = BindingMode.TwoWay;
Debug.WriteLine("SetBinding");
// setting the binding will push the model value to the UI
ui.SetBinding(UIObject.PProperty, b);
// Setting the UI value will result in coercion but only in the UI.
// The value pushed to the model through the binding is not coerced.
Debug.WriteLine("Set to -4");
ui.P = -4;
Debug.Assert(ui.P == 0);
// The binding is TwoWay, the DP value is coerced to 0.
Debug.Assert(m.P == 0); // Not true. This will be -4. Why???
}
class UIObject : FrameworkElement
{
public static readonly DependencyProperty PProperty =
DependencyProperty.Register("P", typeof(int), typeof(UIObject),
new FrameworkPropertyMetadata(
new PropertyChangedCallback(OnPChanged),
new CoerceValueCallback(CoerceP)));
public int P
{
get { return (int)GetValue(PProperty); }
set { SetValue(PProperty, value); }
}
private static void OnPChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
Debug.WriteLine(typeof(UIObject) + ".P changed from " + e.OldValue + " to " + e.NewValue);
}
private static object CoerceP(DependencyObject sender, object value)
{
int p = (int)value;
if (p < 0)
{
Debug.WriteLine(typeof(UIObject) + ".P coerced from " + p + " to 0");
p = 0;
}
return p;
}
}
class ModelObject
{
private int p;
public int P
{
get
{
Debug.WriteLine(this + ".P returned " + this.p);
return this.p;
}
set
{
Debug.WriteLine(this + ".P changed from +" + this.p + " to " + value);
this.p = value;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1651212/invalidoperationexception-on-object-from-a-thread-thats-done1InvalidOperationException on object from a thread that's doneBob2009-10-30T17:25:12Z2009-10-30T17:43:13Z
<p>In a WPF application I had a BackgroundWorker thread creating an object. Let's call the object foo.</p>
<p>Background worker code:</p>
<pre><code>SomeClass foo = new SomeClass();
// Do some operation on foo
// Set some dependency property on the main class to foo
this.Dispatcher.BeginInvoke(DispatcherPriority.Normal,
(SendOrPostCallback)delegate { SetValue(FooProperty, foo); },
foo);
</code></pre>
<p>Now, when the main class tries to access FooProperty using a getter, I get an InvalidOperationException: The calling thread cannot access this object because a different thread owns it.</p>
<p>If the thread the create the object is finished, why does it still own the object? Is there someway around this.?</p>
http://stackoverflow.com/questions/1593523/dependency-property-not-working-trying-to-set-through-style-setter0Dependency property not working, trying to set through style setter.Kohan2009-10-20T09:44:30Z2009-10-26T10:58:16Z
<p>I am trying to set up a custom style for my newly made usercontrol, however i am getting the error : "Cannot convert the value in attribute 'Property' to object of type 'System.Windows.DependencyProperty'."</p>
<p>I thought i had set up Dependency properties but it seemed this was not the case, so i did some research and added:</p>
<pre><code> public static readonly DependencyProperty ImageSourceProperty =
DependencyProperty.Register("ImageSource", typeof(BitmapSource), typeof(Image));
</code></pre>
<p>to make this:
-- MyButton.Xaml.Cs --</p>
<pre><code> namespace Client.Usercontrols
{
public partial class MyButton : UserControl
{
public static readonly DependencyProperty ImageSourceProperty =
DependencyProperty.Register("ImageSource", typeof(BitmapSource), typeof(Image));
public MyButton()
{
InitializeComponent();
}
public event RoutedEventHandler Click;
void onButtonClick(object sender, RoutedEventArgs e)
{
if (this.Click != null)
this.Click(this, e);
}
BitmapSource _imageSource;
public BitmapSource ImageSource
{
get { return _imageSource; }
set
{
_imageSource = value;
tehImage.Source = _imageSource;
}
}
}
}
</code></pre>
<p>This unfortunately does not work. I also tried this:</p>
<pre><code>public BitmapSource ImageSource
{
get { return (BitmapSource)GetValue(MyButton.ImageSourceProperty); }
set
{
SetValue(ImageSourceProperty, value);
}
}
</code></pre>
<p>But that did not work and the image was not shown and generated the same error as mentioned previously anyway.</p>
<p>Any ideas?
Regards Kohan.</p>
<p>-- MyButton.Xaml --</p>
<pre><code><UserControl x:Class="Client.Usercontrols.MyButton"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" MinHeight="30" MinWidth="40"
DataContext="{Binding RelativeSource={RelativeSource Self}}">
<Button Width="Auto" HorizontalAlignment="Center" Click="onButtonClick">
<Border CornerRadius="5" BorderThickness="1" BorderBrush="Transparent" >
<Grid>
<Image Name="tehImage" Source="{Binding ImageSource}" />
<TextBlock Name="tehText" Text="{Binding Text}" Style="{DynamicResource ButtonText}" />
</Grid>
</Border>
</Button>
</UserControl>
</code></pre>
<p>-- MYButton Style --</p>
<pre><code><Style TargetType="{x:Type my:MyButton}" >
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type my:MyButton}">
<ContentPresenter />
<ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="ImageSource" Value="../Images/Disabled.png" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</code></pre>
http://stackoverflow.com/questions/1593744/binding-to-a-usercontrols-dependencyproperty0Binding to a UserControl's DependencyPropertyEchilon2009-10-20T10:34:38Z2009-10-20T17:49:13Z
<p>I'm trying to adapt a soltuion for the WPF toolkit's calendar from <a href="http://msdn.microsoft.com/en-us/magazine/dd882520.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/dd882520.aspx</a> but I'm having problems getting a binding on the usercontrol to work. I've tried using FindAncestor and ElementName, but I just get a binding error.</p>
<p>I think it might have something to do with the tooltip and it's DataContext in the calendar. Has anyone else had this problem?</p>
<pre><code><UserControl x:Class="ChickenPing.MealCalendar"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:conv="clr-namespace:ChickenPing.Converters"
xmlns:wpf="clr-namespace:Microsoft.Windows.Controls;assembly=WPFToolkit"
xmlns:primitives="clr-namespace:Microsoft.Windows.Controls.Primitives;assembly=WPFToolkit"
xmlns:vsm="clr-namespace:System.Windows;assembly=WPFToolkit"
xmlns:loc="clr-namespace:ChickenPing"
x:Name="root">
<wpf:Calendar x:Name="calendar">
<wpf:Calendar.Resources>
<conv:IconConverter x:Key="IconConverter"/>
<conv:MealCalendarConverter x:Key="MealCalendarConverter" />
<!--LinearGradientBrush x:Key="MealBackgroundFill" StartPoint="0,0" EndPoint="0,1">
<GradientStop Color=""
</LinearGradientBrush-->
</wpf:Calendar.Resources>
<wpf:Calendar.CalendarDayButtonStyle>
<Style TargetType="primitives:CalendarDayButton">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="primitives:CalendarDayButton">
<Grid>
<!Grid.ToolTip>
<ToolTip>
<ToolTip.DataContext>
<MultiBinding Converter="{StaticResource MealCalendarConverter}">
<Binding Path="PlacementTarget.DataContext" RelativeSource="{x:Static RelativeSource.Self}"/>
<Binding Path="Meals">
<Binding.RelativeSource>
<RelativeSource Mode="FindAncestor" AncestorType="{x:Type loc:MealCalendar}" />
</Binding.RelativeSource>
</Binding>
</MultiBinding>
</ToolTip.DataContext>
</code></pre>
<p>The error is:</p>
<pre><code>System.Windows.Data Warning: 4 : Cannot find source for binding with reference 'RelativeSource FindAncestor, AncestorType='MyAssembly.MyControl', AncestorLevel='1''. BindingExpression:Path=ConversionCollection; DataItem=null; target element is 'ToolTip' (Name=''); target property is 'DataContext' (type 'Object')
</code></pre>
<p>And the declaration for the DependencyProperty:</p>
<pre><code>public static readonly DependencyProperty MealsProperty = DependencyProperty.Register("Meals", typeof(Dictionary<DateTime, IEnumerable<PlannedMealGroup>>), typeof(MealCalendar), new UIPropertyMetadata(new Dictionary<DateTime, IEnumerable<PlannedMealGroup>>()));
public Dictionary<DateTime, IEnumerable<PlannedMealGroup>> Meals {
get { return base.GetValue(MealsProperty) as Dictionary<DateTime, IEnumerable<PlannedMealGroup>>; }
set {
base.SetValue(MealsProperty, value);
}
}
</code></pre>
<p>There's another control I have where the same thing happens, so I think I may be missing something.</p>
http://stackoverflow.com/questions/1554977/silverlight-label-does-not-evaluate-binding-of-custom-dependencyproperty1Silverlight: Label does not evaluate Binding of custom DependencyPropertyfrenetisch applaudierend2009-10-12T14:42:57Z2009-10-19T09:46:18Z
<p>Hi everyone!</p>
<p>I have a Silverlight 3 Label which I connect to a ComboBox using the Target Property of the Label. According to MSDN the Label class iterates through the targets bindings and searches the sources for meta data to determine the content of the Label.</p>
<p>This actually works as long as the target is a standard control. But if I use a custom control, which in my case extends ComboBox, and introduce a new DependencyProperty it is simply ignored.</p>
<p>E.g. this works:</p>
<pre><code><dataInput:Label Grid.Row="3" Grid.Column="0"
Target="{Binding ElementName=cbxCountry}"
VerticalAlignment="Center"/>
<ComboBox x:Name="cbxCountry" DisplayMemberPath="Name"
SelectedItem="{Binding DataModel.Country, Mode=TwoWay}"
ItemsSource="{Binding Countries, Source={StaticResource ApplicationData}}"/>
</code></pre>
<p>In the above example the SelectedItem Binding is searched and DataModel.Country does contain the DisplayName which is taken.</p>
<p>But this does not:</p>
<pre><code><dataInput:Label Grid.Row="3" Grid.Column="0"
Target="{Binding ElementName=cbxCountry}"
VerticalAlignment="Center"/>
<local:MyComboBox x:Name="cbxCountry" DisplayMemberPath="Name"
MySelectedItem="{Binding DataModel.Country, Mode=TwoWay}"
MyItemsSource="{Binding Countries, Source={StaticResource ApplicationData}}"/>
</code></pre>
<p>The custom Properties are Dependency Properties and declared as follws:</p>
<pre><code>private static readonly DependencyProperty MySelectedItemProperty =
DependencyProperty.Register("MySelectedItem",
typeof(object), typeof(MyComboBox),
new PropertyMetadata(null,
MySelectedItemPropertyChanged));
</code></pre>
<p>I know that I can work around this by defining the PropertyPath on the Label, but I'd rather avoid this, if possible.</p>
<p>So my question now is, can anyone reproduce this issue, and much more important of course, does anybody know how to solve it? :-)</p>
<p>Thanks, Markus</p>
http://stackoverflow.com/questions/1566463/cannot-databind-dependencyproperty1Cannot databind DependencyPropertyTor Haugen2009-10-14T14:06:40Z2009-10-16T08:35:29Z
<p>Hi all</p>
<p>I have a UserControl with a DependencyProperty. I set it's value in the host window using a data binding expression. However, it doesn't work as expected.</p>
<p>Snippet from the user control's codebehind:</p>
<pre><code>public class ViewBase : UserControl
{
public static readonly DependencyProperty ViewModelProperty
= DependencyProperty.Register(
"ViewModel", typeof(ViewModelBase), typeof(ViewBase));
public ViewModelBase ViewModel
{
get { return GetValue(ViewModelProperty) as ViewModelBase; }
set
{
SetValue(ViewModelProperty, value);
}
}
}
</code></pre>
<p>And from the XAML (note: CasingListView inherits from ViewBase):</p>
<pre><code><CasingEditor:CasingListView x:Name="_casingListView"
ViewModel="{Binding CasingListViewModel}" />
</code></pre>
<p>What happens is nothing. Specifically, the setter is never called, and the property remains null. I know the source property <code>CasingListViewModel</code> has a value, because I have tried to bind it to another property (DataContext), and it worked fine.</p>
<p>I thought a dependency property could be databound. Am I wrong?</p>
http://stackoverflow.com/questions/1273349/silverlight-2-0-determine-if-a-dependency-property-is-set-before-changing-it0Silverlight 2.0: Determine if a dependency property is set before changing it.Scott2009-08-13T17:12:04Z2009-10-14T16:00:32Z
<p>I have a dependency property (Foreground) on a custom control which is inheriting from Control. When I am loading the control, I want to see if the user has set the dependency property or if it is using its default value before I set the value for them. The problem is a bit more complicated then that, here it is: </p>
<p>The control is in a custom control library that a user adds to their project. When they are setting up their project, I have the ability for them to add a line to their app.xaml file with a given x:key that contains the settings that I read while setting the default values for my controls. However, if they set the value either in code, or in xaml, I do not want to set the value with this global value. Here are a few cases to help visualize what I'm talking about:</p>
<ol>
<li><p>The user creates a control from my library and puts it on their page. They then set the foreground to green. I want the value of the foreground to be green for that control.</p></li>
<li><p>The user adds a special line to their app.xaml that states they want all controls of a particular kind to have a foreground of red. I want the value of the foreground of all controls of that kind to be red.</p></li>
<li><p>The user adds a special line to their app.xaml that states they want all controls of a particular kind to have a foreground of red. They then set the value of the foreground of a single control (in xaml) to yellow. I want the value of the foreground of all controls of that kind to be red, except for the one they otherwise specified to be yellow.</p></li>
</ol>
<p>When loading the control, I want to read the dependency property to see if they have set the value, or if it is the default value which is defined in the style. If it is the default value, I want to then read their special line out of the app.xaml file and set the fore ground to that color. </p>
http://stackoverflow.com/questions/1531468/ive-created-an-attached-property-now-how-do-i-use-it0I've created an Attached Property, now how do I use it?Edward Tanguay2009-10-07T12:55:08Z2009-10-07T13:49:52Z
<p>I'm trying to determine if Attached Behaviors are something we need in <strong>building controls</strong> for the forms in our application.</p>
<p>Hence, I not only want to know how to <strong>create</strong> Attached Behaviors but want to see real instances in which they are <strong>used</strong> to solve problems. I used <a href="http://msdn.microsoft.com/en-us/library/ms749011.aspx#howused" rel="nofollow">this MSDN article</a> to create a UserControl with an attached property in a way that I think would be useful, namely, a stackpanel in which certain child elements are either <strong>highlighted</strong> or not highlighted.</p>
<p>This example runs fine, but where do I put the logic to <strong>highlight</strong> or not highlight (e.g. change the background color) of the <strong>child</strong> elements?</p>
<p><strong>XAML:</strong></p>
<pre><code><Window x:Class="TestAttachedProperties2343.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TestAttachedProperties2343"
Title="Window1" Height="300" Width="300">
<Grid>
<local:ExtendedStackPanel>
<TextBlock local:ExtendedStackPanel.IsHighlighted="True" Text="text1"/>
<TextBox local:ExtendedStackPanel.IsHighlighted="False" Text="text2"/>
<TextBox local:ExtendedStackPanel.IsHighlighted="True" Text="text3"/>
</local:ExtendedStackPanel>
</Grid>
</Window>
</code></pre>
<p><strong>Code Behind:</strong></p>
<pre><code>using System.Windows;
using System.Windows.Controls;
using System.ComponentModel;
using System;
namespace TestAttachedProperties2343
{
public partial class ExtendedStackPanel : StackPanel
{
public static readonly DependencyProperty IsHighlightedProperty = DependencyProperty.RegisterAttached(
"IsHighlighted",
typeof(Boolean),
typeof(ExtendedStackPanel),
new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.AffectsRender));
public static void SetIsHighlighted(UIElement element, Boolean value)
{
element.SetValue(IsHighlightedProperty, value);
}
public static Boolean GetIsHighlighted(UIElement element)
{
return (Boolean)element.GetValue(IsHighlightedProperty);
}
public ExtendedStackPanel()
{
InitializeComponent();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1530878/how-can-i-extend-this-dependency-property-example-to-recreate-a-dockpanel-dockt0How can I extend this dependency property example to recreate a DockPanel.Dock="Top"-like dependency property?Edward Tanguay2009-10-07T10:53:35Z2009-10-07T11:05:02Z
<p>I'm trying to get a better understanding of what dependency properties and what they are <strong>not</strong>. I've built the example below which enables a combobox's choices to change based on how the user moves a <strong>slider</strong>.</p>
<p>In creating this I learned that dependency properties actually have nothing to do with <strong>INotifyPropertyChanged</strong> as is used in ViewModel properties, which simplified the below example.</p>
<p><strong>But now how would I go from this example below to recreating the kind of dependency property seen in <code>DockPanel.Dock="Top"</code>, e.g. so I could enable the following kind of XAML use:</strong></p>
<pre><code><local:ExtendedComboBox
Margin="5 5 5 0"
DataIdCode="{Binding ElementName=TheSource, Path=Value}">
<Image local:ExtendendedComboBox="Left" ... />
<TextBlock local:ExtendendedComboBox="Right" ... />
</local:ExtendedComboBox>
</code></pre>
<p>Is this possible? And is this the same kind of use of dependency properties as in the more straight-forward example below, or is this, like INotifyPropertyChanged, yet <strong>another</strong> kind of binding technology in WPF?</p>
<p>Here is the slider/combobox example:</p>
<p><strong>XAML:</strong></p>
<pre><code><Window x:Class="TestDependency9202.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TestDependency9202"
Title="Window1" Height="300" Width="300">
<StackPanel>
<StackPanel
Margin="5 5 5 0"
Orientation="Horizontal">
<TextBlock Text="Customers"
Margin="0 0 3 0"/>
<Slider x:Name="TheSource"
HorizontalAlignment="Left"
Value="0"
Width="50"
SnapsToDevicePixels="True"
Minimum="0"
Margin="0 0 3 0"
Maximum="1"/>
<TextBlock Text="Employees"/>
</StackPanel>
<local:ExtendedComboBox
Margin="5 5 5 0"
DataIdCode="{Binding ElementName=TheSource, Path=Value}"/>
</StackPanel>
</Window>
</code></pre>
<p><strong>Code-Behind:</strong></p>
<pre><code>using System.Windows;
using System.Windows.Controls;
using System.ComponentModel;
namespace TestDependency9202
{
public partial class ExtendedComboBox : ComboBox
{
public static readonly DependencyProperty DataIdCodeProperty =
DependencyProperty.Register("DataIdCode", typeof(string), typeof(ExtendedComboBox),
new PropertyMetadata(string.Empty, OnDataIdCodePropertyChanged));
private static void OnDataIdCodePropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
ExtendedComboBox extendedComboBox = dependencyObject as ExtendedComboBox;
extendedComboBox.OnDataIdCodePropertyChanged2(e);
}
private void OnDataIdCodePropertyChanged2(DependencyPropertyChangedEventArgs e)
{
if (DataIdCode == "0")
{
Items.Clear();
Items.Add("customer1");
Items.Add("customer2");
Items.Add("customer3");
}
else if (DataIdCode == "1")
{
Items.Clear();
Items.Add("employee1");
Items.Add("employee2");
Items.Add("employee3");
}
this.SelectedIndex = 0;
}
public string DataIdCode
{
get { return GetValue(DataIdCodeProperty).ToString(); }
set { SetValue(DataIdCodeProperty, value); }
}
public ExtendedComboBox()
{
InitializeComponent();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1444252/bind-to-an-attached-behavior-on-a-storyboard0Bind to an attached behavior on a StoryboardMark Heath2009-09-18T12:26:51Z2009-10-06T14:51:22Z
<p>I have created an attached dependency property for Storyboards, with the intention of enabling me to call a method on my ViewModel when a Storyboard Completed event fires:</p>
<pre><code>public static class StoryboardExtensions
{
public static ICommand GetCompletedCommand(DependencyObject target)
{
return (ICommand)target.GetValue(CompletedCommandProperty);
}
public static void SetCompletedCommand(DependencyObject target, ICommand value)
{
target.SetValue(CompletedCommandProperty, value);
}
public static readonly DependencyProperty CompletedCommandProperty =
DependencyProperty.RegisterAttached(
"CompletedCommand",
typeof(ICommand),
typeof(StoryboardExtensions),
new FrameworkPropertyMetadata(null, OnCompletedCommandChanged));
static void OnCompletedCommandChanged(DependencyObject target, DependencyPropertyChangedEventArgs e)
{
Storyboard storyboard = target as Storyboard;
if (storyboard == null) throw new InvalidOperationException("This behavior can be attached to Storyboard item only.");
storyboard.Completed += new EventHandler(OnStoryboardCompleted);
}
static void OnStoryboardCompleted(object sender, EventArgs e)
{
Storyboard item = ... // snip
ICommand command = GetCompletedCommand(item);
command.Execute(null);
}
}
</code></pre>
<p>then I try to use it in XAML, with a Binding syntax:</p>
<pre><code><Grid>
<Grid.Resources>
<Storyboard x:Key="myStoryboard" my:StoryboardExtensions.CompletedCommand="{Binding AnimationCompleted}">
<DoubleAnimation Storyboard.TargetProperty="Opacity" From="1" To="0" Duration="0:0:5" />
</Storyboard>
<Style x:Key="myStyle" TargetType="{x:Type Label}">
<Style.Triggers>
<DataTrigger
Binding="{Binding Path=QuestionState}" Value="Correct">
<DataTrigger.EnterActions>
<BeginStoryboard Storyboard="{StaticResource myStoryboard}" />
</DataTrigger.EnterActions>
</DataTrigger>
</Style.Triggers>
</Style>
</Grid.Resources>
<Label x:Name="labelHello" Grid.Row="0" Style="{StaticResource myStyle}">Hello</Label>
</Grid>
</code></pre>
<p>This fails with the following exception:</p>
<blockquote>
<p>System.Windows.Markup.XamlParseException occurred
Message="Cannot convert the value in attribute 'Style' to object of type 'System.Windows.Style'. Cannot freeze this Storyboard timeline tree for use across threads. Error at object 'labelHello' in markup file 'TestWpfApp;component/window1.xaml' </p>
</blockquote>
<p>Is there any way to get the Binding syntax working with an attached ICommand property for a Storyboard?</p>
http://stackoverflow.com/questions/1465885/delayed-rendering-of-wpf-silverlight-dependency-properties1Delayed "rendering" of WPF/Silverlight Dependency Properties?Aardvark2009-09-23T13:08:24Z2009-10-05T03:33:15Z
<p>Is there a way to know the first time a Dependency Property is accessed through XAML binding so I can actually "render" the value of the property when needed?</p>
<p>I have an object (class derived from Control) that has several PointCollection Dependency Properties that may contain 100's or 1000's of points. Each property may arrange the points differently for use in different types shapes (Polyline, Polygon, etc - its more complicated then this, but you get the idea). Via a Template different XAML objects use TemplateBinding to access these properties. Since my object uses a Template I never know what XAML shapes may be in use for my object - so I never know what Properties they may or may not bind to. I'd like to only fill-in these PointCollections when they are actually needed.</p>
<p>Normally in .NET I'd but some logic in the Property's getter, but these are bypassed by XAML data binding.</p>
<p>I need a WPF AND Silverlight compatible solution.</p>
<p>I'd love a solution that avoids any additional complexities for the users of my object.</p>
http://stackoverflow.com/questions/1462382/is-there-a-better-way-to-self-reference-a-type3Is there a better way to self reference a type?jpierson2009-09-22T20:25:54Z2009-09-23T13:14:49Z
<p>I'm finding lately a lot of code smells related to referencing generic classes in C#. My gripes especially apply to those classes which inherit from DependencyObject and contain DependencyProperties. </p>
<p>The basic problem is that when declaring a dependency property one generally references the current type which is also known as the <em>owner</em>. This works just fine and in general isn't much of a problem for simple non-generic objects except for that when the object contains several dependency properties and then the type name needs to be re-factored in various places (made easier with refactoring in Visual Studio). </p>
<pre><code>public class MyDependencyObject : DependencyObject
{
public int MyProperty
{
get { return (int)GetValue(MyPropertyProperty); }
set { SetValue(MyPropertyProperty, value); }
}
public static readonly DependencyProperty MyPropertyProperty =
DependencyProperty.Register("MyProperty", typeof(int), typeof(MyDependencyObject), new UIPropertyMetadata(0));
}
</code></pre>
<p>What I've been finding lately though is that when combining this burdonsome explicit self referencing practice with extensive use of generics the code really starts to become ugly.</p>
<pre><code>public class MyDependencyObject<TypeA, TypeB, TypeC, TypeD> : DependencyObject
{
public int MyProperty1
{
get { return (int)GetValue(MyPropertyProperty1); }
set { SetValue(MyPropertyProperty1, value); }
}
public static readonly DependencyProperty MyPropertyProperty1 =
DependencyProperty.Register("MyProperty1", typeof(int), typeof(MyDependencyObject<TypeA, TypeB, TypeC, TypeD>));
public int MyProperty2
{
get { return (int)GetValue(MyPropertyProperty2); }
set { SetValue(MyPropertyProperty2, value); }
}
public static readonly DependencyProperty MyPropertyProperty2 =
DependencyProperty.Register("MyProperty2", typeof(int), typeof(MyDependencyObject<TypeA, TypeB, TypeC, TypeD>));
public int MyProperty3
{
get { return (int)GetValue(MyPropertyProperty3); }
set { SetValue(MyPropertyProperty3, value); }
}
public static readonly DependencyProperty MyPropertyProperty3 =
DependencyProperty.Register("MyProperty3", typeof(int), typeof(MyDependencyObject<TypeA, TypeB, TypeC, TypeD>));
public int MyProperty4
{
get { return (int)GetValue(MyPropertyProperty4); }
set { SetValue(MyPropertyProperty4, value); }
}
public static readonly DependencyProperty MyPropertyProperty4 =
DependencyProperty.Register("MyProperty4", typeof(int), typeof(MyDependencyObject<TypeA, TypeB, TypeC, TypeD>));
}
</code></pre>
<p>My question is whether anybody is aware of any tricks, hacks, or legitimate solutions to reducing the number of times the full type name with generic parameters needs to be referenced in situations such as the one shown above.</p>
<p>Full disclosure: I did bring this up as an issue on the Microsoft .Connect site but they rejected the idea of a <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=470524&wa=wsignin1.0" rel="nofollow">self referencing keyword</a> but offered no workaround or alternative solution. My idea was to use some keyword such as <strong>Owner</strong>, <strong>OwnerClass</strong>, or <strong>ThisType</strong> in order to generically refer to the type in which the keyword is being used.</p>
http://stackoverflow.com/questions/1456499/difference-among-three-kinds-of-dependency-properties-in-net-workflow-foundation0Difference among three kinds of dependency properties in .NET Workflow Foundation.weilin82009-09-21T19:53:23Z2009-09-21T21:12:59Z
<p>In .NET Workflow Foundation, there are three kinds of dependency proprieties: <strong>instance properties</strong>, <strong>meta properties</strong>, and <strong>attached properties</strong>. Can someone explain what the difference and proper usages are? Thanks.</p>