Tagged Questions
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}">
...
2
votes
1answer
706 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
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"
...
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
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 ...
0
votes
1answer
58 views
Set ItemsSource to ContentPresenter.Content
I have tried this:
<DataTemplate x:Key="RowItemTemplate">
<ItemsControl ItemTemplate="{StaticResource ResourceKey=BorderItemTemplate}" ItemsSource="ContentPresenter.Content">
...
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
2answers
580 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
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 ...