Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
198 views

In WPF, how do I find an element in a template that's switched in via a trigger?

I have a UserControl (not a lookless custom control) which, depending on some custom state properties, swaps in various ContentTemplates, all defined as resources in the associated XAML file. In the ...
2
votes
2answers
1k views

ContentTemplateSelector is only called one time showing always the same datatemplate

I have made a sample demo VS 2010 RC sample project, because in my production project I have the same error using MVVM. In my sample demo project I use only Code-behind without 3rd party dependencies ...
1
vote
2answers
400 views

Why would 'this.ContentTemplate.FindName' throw an InvalidOperationException on its own template?

Ok... this has me stumped. I've overridden OnContentTemplateChanged in my UserControl. I'm checking that the value passed in for newContentTemplate does in fact equal this.ContentTemplate (it does) ...
1
vote
1answer
672 views

Changing ContentTemplate based on ListBox selection

I have a Listbox and a Border in a StackPanel similar to the following: <StackPanel Orientation="Horizontal"> <ListBox> <ListBoxItem Content="People"/> ...
0
votes
0answers
70 views

Dynamically assign GeometryDrawing as content of user control in WPF

I would like a user control's content to be one of several statically defined geometry drawings. The geometry drawing to use should depend on a property in the viewmodel for the control, and only ...
0
votes
0answers
195 views

DataGridCell content template selector Silverlight

I have a DataGrid with the dynamic data (collection of custom DataRows), which i get from the server. DataRow has an indexer and a property Data which returns whole data row for the binding (you'll ...
0
votes
1answer
54 views

Why all contents are aligned left within a content template in an update panel?

If I write dummy text in the 2 labels before the update timer starts, one appears at the right and the other appears at the left as expected However, when the updateTimer gets into picture both texts ...
0
votes
1answer
71 views

How do I select a template for a GroupBox based on the value of an object

I want the contents of a group box to be selected by value, so how I do write the XAML to do this? <GroupBox Header="Specific details" ContentTemplateSelector={StaticResource someSelector}> ...
0
votes
1answer
871 views

ContentTemplateSelector and Choose Template based upon the ListBoxItem Selected Item

I have a XMLDataProvider Static Resource as for my Data listing some products. I have two Controls as Master Detail scenerio 1) ListBox which lists all the Product Titles and 2) COntentControl which ...
0
votes
2answers
205 views

Why is the SelectTemplate Method run 2 times in debug mode?

debuging this class the SelectTemplate Method is run 2 times, but why? The first time the item is always null. public class PersonDataTemplateSelector : DataTemplateSelector { public override ...