Tagged Questions

4
votes
2answers
507 views

Binding in ContentControl Crash

Can anyone tell me why this crashes my app? There seems to be some endless recursion by I can't figure out why. I get this exception Logical tree depth exceeded while traversing the tree. This ...
4
votes
2answers
1k views

Explicitly refresh DataTemplate from a DataTemplateSelector?

I set up a ContentControl.DataTemplateSelector to my desired one. I want that according to a command or whatever, call the ContentControl to reselect the template from the selector by either xaml or ...
3
votes
1answer
109 views

Whats the difference between ContentControl.Template and ContentControl.ContentTemplate

What's the difference between ContentControl.Template and ContentControl.ContentTemplate? And when do I use which? For example I could write in a xaml file for WPF: <ContentControl> ...
3
votes
1answer
629 views

WPF DataGrid vertical sizing

I want to place a DataGrid inside a HeaderedContentControl but the the DataGrid does not get a vertical Scrollbar. It appears to be sized to hold all rows at once, the bottom disappearing from view. ...
2
votes
4answers
966 views

How to set Control Template in code?

I have this in XAML <ControlTemplate TargetType="{x:Type Button}"> <Image ...> </ControlTemplate> I want to achieve same in C# code. How can I achieve this? ControlTemplate ...
2
votes
1answer
458 views

References to Controls in ContentControl are null at the Parent (Page) Level

As a follow up to this question where it was suggested I use a ContentControl, I have run into a scenario when I use a custom made class that dervies from ContentControl on a page, any controls ...
1
vote
1answer
241 views

ContentControl two way binding within DataTemplate not working?

I've setup a reusable datatemplate "DataGridCheckBoxEdit" for a datagrid column. Binding to it one way works like a charm through ContentControl. Binding directly works two way correctly. However, ...
1
vote
2answers
777 views

With WPF, how to link an animation with a ContentControl?

I don't know how to link successfully a StoryBoard to a TranslateTransform that is part of a ContentControl. I always get the following error when I try to run my StoryBoard: 'RenderTransform' ...
0
votes
2answers
380 views

Problems loading images in a Silverlight ControlTemplate

I have problems accessing images in the ControlTemplate of a "Silverlight Templated Control" I implemented. The Style for my control called "ControlDragger" is the following: <!-- ControlDragger ...
0
votes
0answers
922 views

WP7 Popups using resources

Im trying to create my own(custom design) popup for my WP7 application. To put it shortly it should only display bing map with a drawn route and a close button. I have used the Picker Box by from ...
0
votes
1answer
128 views

XAML tostring in ContentControl

I am new to the XAML world and I'm fumbling my way through a lot of tutorials. One thing i'm stuck on is calling the .tostring on an object. Here is mysetup I have a listbox that is bound to a list ...
0
votes
2answers
356 views

<ContentControl>Content</ContentControl> vs. <ContentControl Content=“Content”/>

Given the following two options: <ContentControl>Content</ContentControl> vs. <ContentControl Content="Content"/> Any performance differences? What would you say is more ...