Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
925 views

WPF - Is there a good reason that Setter.Value isn't a ContentProperty?

Every time I write out a setter whose Value property value isn't describable inline, I curse the fact that the API doesn't mark the Setter class with [ContentProperty("Value")], which would allow ...
2
votes
1answer
1k views

Silverlight: Use reflection to get the BindingExpression (and value) for controls having a ContentProperty

I need to use reflection to get the binding value in a control that is a DataGridTemplateColumn (e.g HyperLinkButton). Does anyone know how I might do this? It seems simple enough to do this with a ...
2
votes
1answer
3k views

How do I resolve the WPF Designer error 'The type {0} does not support direct content'.'?

The following XAML (below) defines a custom collection in resources and attempts to populate it with a custom object; <UserControl x:Class="ImageListView" ...
1
vote
1answer
222 views

Binding-Target never gets set in custom objects declared in *.resources; binding evaluation fails

I have a xaml view like this: <Tv:TvPanel xmlns:Tv="..."> <Tv:TvPanel.Resources> <Tv:Parameters x:Key="parameterList"> <Tv:ParameterDefinition ParameterName="MyParam" ...
0
votes
2answers
312 views

Custom control ContentProperty DataBinding

I'm running in a issue while trying to use dependency properties in objects which are parts of a collection, inside acustom control, collection identified with the "ContentProperty" attribute. Ok, ...
0
votes
1answer
286 views

ResourceDictionary as ContentProperty in a ValueConverter

To convert Enums to Icons I use a value converter like that: public class IconConverter : IValueConverter { public ResourceDictionary Items { get; set; } public object Convert(object value, ...