0
votes
3answers
1k views
WPF: template or UserControl with 2 (or more!) ContentPresenters to present content in ‘slots’
Hello, 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 …
0
votes
2answers
43 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"
xmlns:x="http://schemas.micros …
0
votes
0answers
30 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 …
1
vote
1answer
118 views
WPF ContentPresenter bound to a collection
Hi
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 …
0
votes
1answer
448 views
wpf ContentPresenter wont enable/disable
Hi,
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-S …
1
vote
6answers
209 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 combo …
0
votes
3answers
271 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 …
0
votes
2answers
2k 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}">
< …
1
vote
1answer
617 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 …
2
votes
1answer
252 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 observa …
