Tagged Questions

33
votes
2answers
8k views

What's the difference between ContentControl and ContentPresenter?

I'm not sure when I should use ContentPresenter instead of ContentControl (and vice-versa). At the moment, I'm using ContentControl pretty much all the time in my DataTemplates. When would ...
9
votes
3answers
10k views

WPF: template or UserControl with 2 (or more!) ContentPresenters to present content in 'slots'

I am developing LOB application, where I will need multiple dialog windows (and displaying everything in one window is not an option/makes no sense). I would like to have a user control for my window ...
9
votes
2answers
4k views

How do I Change the FontFamily on a ContentPresenter?

I have a custom template for an expander that is close to the code below. I had to change some of the code to take out custom classes, brushes, etc.. <Style TargetType="{x:Type Expander}"> ...
5
votes
1answer
375 views

WPF: TextTrimming on a ContentPresenter

Is there a simple way to just get TextTrimming to work with a ContentPresenter? I have implict styles for TextBlock and AccessText that have TextTrimming set to CharacterEllipsis, but it's not ...
5
votes
3answers
9k views

Changing the Foreground colour of a contentpresenter in a listbox

I have created the following style for a listbox that will have an image displayed next to some text: <Style x:Key="ImageListBoxStyle" TargetType="{x:Type ListBox}"> <Setter ...
3
votes
1answer
200 views

WPF - How to programmatically materialize object to visual content?

When you assign an object to a Content control it will materialize a Visual appropriate for that assigned object. Is there a programmatic way to achieve the same result? I would like to call a ...
3
votes
3answers
338 views

Changing content of Window (WPF)

I've created a simple WPF application which has two Windows. The user fills in some information on the first Window and then clicks Ok which will take them to the second Window. This is working fine ...
2
votes
1answer
704 views

Is there any problem with having a ContentPresenter in ListBoxItem.ContentTemplate?

It seems like having a ContentPresenter in my ListBoxItem.ContentTemplate is causing Visual Studio to crash? <ListBox> <ListBox.ItemContainerStyle> <Style ...
2
votes
3answers
2k views

ContentPresenter within ControlTemplate cannot change attached dependency property

Why does the following simplified code not sets the font-size of the TextBlock to 50? <Window.Resources> <ControlTemplate TargetType="ContentControl" x:Key="Test"> ...
2
votes
2answers
1k views

Does anyone have a simple example of a UserControl with a single ContentPresenter?

So far, I have this: <UserControl x:Class="MyConcept.ExpanderPanel" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
2
votes
1answer
486 views

How do I get the instance of a templated item from a databound ItemsControl? (WPF)

I have an <ItemsControl> with a custom <DataTemplate> (and also a custom <ItemsPanelTemplate> that is just a WrapPanel), bound via ItemsSource to a simple observable collection of ...
1
vote
1answer
86 views

How can you enable auto-DataTemplate selection based on data type like you can with an items control?

We're writing a very specialized ItemsControl which actually has three ContentPresenter's per 'row', each bound to a different object (think poor-man's grid) instead of the more common one, like a ...
1
vote
1answer
43 views

WPF - can't display page content

I'm trying to display a wpf page inside a wpf window (to reproduce some bug in an isolated environment) and I'm unable to see the page inside the window. My code is quite simple: MainWindow.xaml: ...
1
vote
2answers
439 views

How do you navigate a complex Visual Tree in order to re-bind an existing element?

In the above image, child is a ContentPresenter. Its Content is a ViewModel. However, its ContentTemplate is null. In my XAML, I have a TabControl with the following structure: ...
1
vote
1answer
746 views

ContentPresenter.ContentSource vs Content

Basically, I don't understand what the real difference is here: The Microsoft code for TabItem uses: <ContentPresenter ContentSource="Header" ... /> So, when woudl someone use the Content ...
1
vote
1answer
300 views

How do I access a named Control within my ItemPanelTemplate from the code-behind?

I am trying to access a Canvas object within an ItemsPanelTemplate so I can add items directly to it in the code-behind. Here is my XAML: <ListBox x:Name="MyMap" ItemsSource="{Binding MapItems}" ...
1
vote
0answers
97 views

Different Styled RadioButtons in one group?

i have two different illustrator paths which placed in a RadioButton each. Two different RadioButton-Styles doesn't work in one RadioButtonGroup. So i create a Basic-RadioButton-Style: <Style ...
1
vote
0answers
627 views

Apply a style to TextBlocks within a ContentPresenter in Silverlight

If I have the following style defined: <UserControl.Resources> <Style TargetType="TextBlock" x:Key="ProblemStyle"> <Setter Property="FontSize" Value="40"/> ...
1
vote
1answer
225 views

Why do I get a NullReferenceException when using a style on a ContentPresenter?

I've created this template, which uses a style applied to the ContentPresenter so that I can bind the data object's Column property to Grid.Column, allowing the items to determine for themselves which ...
1
vote
1answer
979 views

WPF ContentPresenter bound to a collection

I have a collection of string. I want to create an image out of each of the strings using a converter. I tried binding the collection to a ContentPresenter, but I don't know what do to when binding ...
1
vote
6answers
425 views

control to interchange UIElements in WPF

What is the most minimal way to dynamically interchange UIElements at a certian "slot" on the UI? I have a number of UIElements and based on some external databinding (e.g. a combobox selection) I ...
1
vote
1answer
2k views

How do I completely replace the content of a WPF button with a graphic path?

I've deconstructed a standard WPF button using Blend and have managed to create a nicely styled button, but I cannot figure out how to make the path fill the interior of the button space (the button ...
0
votes
1answer
77 views

Using a ContentPresenter inside of a MenuItem HeaderTemplate causes a StackOverflowException

Please observe the following markup: <Style TargetType="{x:Type MenuItem}" x:Key="..."> <Setter Property="HeaderTemplate"> <Setter.Value> ...
0
votes
1answer
63 views

WindowsFormsHost content doesn't show when its given to a ContentPresenter

I have WinForm controls I want to put in a WPF DropDownButtons(Extended WPF Toolkit) DropDownContent. Putting the controls to a WindowsFormsHost and that one is giving to the DropDownContent doesn't ...
0
votes
1answer
47 views

Run animation based on view model property?

I'm trying to really adhere to the MVVM pattern, and as a result I'm having difficulty figuring out how I can get an animation on a view to fire every time some property on a view model is set (via ...
0
votes
1answer
41 views

How to allocate Irregular area as ContentPresenter?

If we have a grid with 2 columns/1 row, we can have something like in this blog. But if we have 2 columns/2 rows [that means - main sqaure is divided into 4 small sqaures]...and only square at ...
0
votes
2answers
335 views

WPF DataGridCell Template with TextBlock - Binding?

i replace the ContentPresenter in the DataGridCell's Template with a TextBlock an now i search for the correct Binding to the content. The normal way is Text="{TemplateBinding Content} for the ...
0
votes
1answer
426 views

WPF: Problem applying style to custom TabItem Header through ControlTemplate and ContentPresenter.Resources

I am trying to write my own control template for a TabItem Header, and have got the basic layout to work but now I wish to apply styling to the content of the Header, for example to manipulate the ...
0
votes
1answer
188 views

Restrict the Width of a ContentPresenter's to its Dynamic Content

I would like to be able to dynamically adjust the size of a content control. Here's a simple example: ... <Slider x:Name="width" Minimum="40" Value="100" Maximum="300"/> ... ...
0
votes
1answer
32 views

Prevent ContentPresentor while scaled to resize all objects in it's content

Hey guys, I have a ContentPresenter which contains Image inside of it and a few Ellipses (points). There's a Zoom behavior on the ContentPresenter and it scales all the objects inside of it. Does ...
0
votes
3answers
424 views

Why do I need ContentPresenter in SilverLight?

If I can replace it with a single textbox (like on a button), or I can add media element directly to grid (whatever)... What is contentPresenter for? Is there some advantages?
0
votes
1answer
218 views

How do you bind a ContentTemplate directly to a Grid?

In the following XAML, I am trying to bind the various DataTemplates directly to the Grid ContentPresenter. I have put the Button inside the Grid just to prove to myself that the ContentTemplate is ...
0
votes
2answers
2k views

Setting Datacontext on contentpresenter: Binding inside ContentTemplate is not working

I'm learning WPF and the MVVM Pattern and I'm trying to build a calendar-like view. So I currently have a Grid with 6 rows and 7 columns. The first row should be the Header, thus specifying the Week ...
0
votes
1answer
996 views

WPF 4 ContentPresenter TextWrapping style is not applied to implicitedly generated TextBlock

If I assign a piece of text to the Content property of a ContentPresenter, a TextBlock control is generated by the ContentPresenter at render time to contain that text. If I create a style that ...
0
votes
2answers
495 views

Having trouble binding the Visibility of a ContentPresenter in WPF

I have the following XAML: <UserControl.Resources> <DataTemplate x:Key="ExpanderTemplate"> <Grid> <Rectangle Stroke="Black" StrokeThickness="1" Width="10" ...
0
votes
2answers
1k views

Display image in content presenter in button

I have a button with a style that displays an image inside it. I would like to be able to specify the image it uses using the Content property on the button (or some other means). How can ...
0
votes
1answer
341 views

How can I set ContentPropertyAttribute to a Content Presenter?

I have a Usercontrol: SnazzyForm, which in addition to a couple of borders and and a header area and whatnot, also has a Content Presenter which under .NET Framework 3.5 presented content passed to it ...
0
votes
0answers
466 views

Convert ContentPresenter to TextBox in wpf

I have a test project which bases on : http://thejoyofcode.com/ViewModels_and_CheckListBoxes.aspx I want display field of object, not entire object. How to convert this <ContentPresenter ...
0
votes
0answers
2k views

WPF TabItem Style with image

I have a TabControl with TabItems, The TabItems have text and an icon. To do this I have to add a StackPanel to the TabItem. However, once I add the StackPanel, I can no longer control the default ...
0
votes
1answer
2k views

wpf ContentPresenter wont enable/disable

I've overridden a ComboBox in order to add an extra button at the end of the combo - i'm using this to help navigate round my application. Its a M-V-VM App that has an Edit-Save/Cancel mechanism that ...
0
votes
1answer
353 views

Can I have two ContentPresenter pointing to in single Content or ContentSource in the ContentTemplate?

I have created a NavigationPane just like Outlook 2007. In Outlook, when the Pane is collapsed and the side bar is clicked, it used to popup the Selected NavigationItem content. I mimicked the same ...
0
votes
3answers
1k views

How can I make a Button with multiple content values?

My goal is to make a Button that has two Content values. Imagine a Scrabble tile as a button: it has the large letter in the center and a small number in the lower right. This is the effect I am ...