Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
379 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 ...
4
votes
1answer
515 views

Silverlight Defaulting ContentPresenter Content

Why won't this work? In generic.xaml for a custom control: In the style applied to the custom control... <Setter Property="ChromeContent"> <Setter.Value> <Grid /> ...
4
votes
1answer
350 views

Is it possible to embed text formatting in a Silverlight ContentPresenter?

I have just started working with with Styles and Control Templates and have created the following styles to display a button as text in a grid. I would like to embed Font Styling into the styles for ...
3
votes
1answer
208 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
345 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
324 views

A ItemsControl without a ItemsPresenter (Silverlight)

I created a control that inherited the ItemsControl, and the control that I made does not have a ItemsPresenter for its template. Instead, I have a Grid. I want to make a list like this: (Item 1) ...
2
votes
1answer
711 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
47 views

Oracle WebCenter Content Presenter Template

I need to create a content presenter template and integrate it into webcenter. But I am new in this technology. Can anyone give any reference from where I can learn these stuff, any step-by-step ...
1
vote
2answers
45 views

Set the properties of an auto-generated ContentPresenter

Consider the following part of a visual tree in a Windows Phone SL application: As you can see, a PanoramaItem template contains a reference to a static DataTemplateSelector. It is a simple class ...
1
vote
1answer
87 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
441 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
755 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
303 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
1answer
372 views

Silverlight: ContentPresenter inside ComboBox.ItemTemplate crashes everything when clicked on the ComboBox

I'm trying to render a Canvas as the Content of the ContentPresenter below. I load the canvas dynamically from a file and bind the control to the content. Everything works well and it gets displayed ...
1
vote
0answers
637 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
230 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
4k views

How to customize and reuse a DataGridColumnHeader style?

I'm trying to customize the column headers of a DataGrid to show sub-column headers as in the following screenshot: I've made a style for 2 sub-column as in the following XAML: <UserControl ...
1
vote
3answers
675 views

Silverlight: Can I create a custom button which contains two TextBlocks, each of which binds to a different property on an object?

I want to make buttons similar to those on this website. Lets say that the object I'm working with is ArtPiece, and has a Title and Date. I want both of those to show up on my buttons in two ...
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
84 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
2answers
79 views

How do I set the Foreground property of a possible TextBlock in a ContentPresenter in Silverlight?

I have a custom style for Buttons in my Silverlight project and want to set the Foreground (and other properties) of the text in the button. But my idea is to use a ContentPresenter in the style. This ...
0
votes
1answer
65 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
49 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
49 views

How to reference “PreviousData” when setting ContentPresenter.Style

In the following code I am trying to set the style of the first item in my collection to one template and the rest to a different template by checking if the PreviousElement is null. I think my ...
0
votes
1answer
59 views

Set ItemsSource to ContentPresenter.Content

I have tried this: <DataTemplate x:Key="RowItemTemplate"> <ItemsControl ItemTemplate="{StaticResource ResourceKey=BorderItemTemplate}" ItemsSource="ContentPresenter.Content"> ...
0
votes
1answer
42 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
344 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
429 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
192 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
33 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
433 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
220 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
558 views

wp7 contentpresenter - setting content to the same page

I use a page (named containerpage) with a ContentPresenter (named PageContent) and set its content to a PhoneApplicationPage instance (contentpage) in the page's OnNavigatedTo() eventhandler. I also ...
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
1k 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
497 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
2answers
584 views

Underline the implicit Textblock created in Silverlight for a ContentPresenter when Content is a string?

I am trying to create a template for a content control such as Button or HeaderedContentControl etc. where the text is underlined. I just want to underline the text when Content="This text is ...
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 ...

1 2