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 ...
5
votes
1answer
1k views
ContentControl + RenderTargetBitmap + empty image
Im trying to create some chart images without ever displaying those charts on the screen. I'v been at this for quite a while and tried a lot of different things but nothing seems to work. The code ...
5
votes
2answers
5k views
Display a default DataTemplate in a ContentControl when its content is null or empty?
I would think this is possible, but the obvious way isn't working.
Currently, I'm doing this:
<ContentControl
Content="{Binding HurfView.EditedPart}">
<ContentControl.Resources>
...
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
111 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
207 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
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.
...
3
votes
2answers
2k views
Unable to set ContentTemplate via DataTrigger
I want the ContentTemplate to vary according to the value in the DataTrigger.
And yes, I considered using a DataTemplateSelector, but now I need a DataTrigger or better said a MultiDataTrigger.
Please ...
2
votes
2answers
408 views
How to resolve ContentControl ContentTemplateSelector on designtime?
Why I can't resolve ContentControl ContentTemplateSelector on designtime?
(On run time it works)
Designer (VS2010) shows an exception:
System.Reflection.TargetInvocationException
Exception has ...
2
votes
4answers
968 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
567 views
WPF - ContentControl Content as DrawingVisual
Can I set the Content property of a ContentControl to a DrawingVisual object? It says in the documentation that the content can be anything but I tried and nothing shows up when I add the control to ...
2
votes
2answers
915 views
Render a content control in another tab of TabControl
I have a program wherein there are multiple tabs added dynamically to a TabControl object programmatically. What I want to do is render the Content value of each of these tabs to a PNG. I am using a ...
2
votes
1answer
3k views
WPF - Prism - Activate and Deactivate views in a ContentControl region
In my application I only need one view visible at a time which is why I am using a ContentControl in my shell. The issue is that if I have one view visible (lets say View1) and I activate View2, ...
1
vote
1answer
16 views
enforce WPF ContentControls to have maximum width
I have ContentControls like ComboBox and TextBox inside of a Grid or a StackPanel. I want them to have the maximum possible width. How do I achieve that? I've noticed that Button has maximum width any ...
1
vote
2answers
38 views
Changing Main Viewing Area
I'm wondering how to go about creating different views in the main window when a button is pressed. I'm not sure of the correct terminology, so that has hampered my google fu.
I'm thinking that the ...
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
243 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
1answer
98 views
difference when setting ContentTemplate via name than via type inference
I have recently start to learn WPF + MVVM. It is possible I have the wrong end of the stick or the wrong stick completely with the way things should be done.
I am trying to create a simple order ...
1
vote
1answer
712 views
WPF - Adding ContentControl to Custom Canvas
I have a custom DrawingCanvas which is inherited from Canvas. When I add a ContentControl to DrawingCanvas with the following code nothing shows up.
GraphicsRectangle rect = new GraphicsRectangle(0, ...
1
vote
2answers
181 views
Forcing Arrange in a Custom WPF Canvas
I'm working on a project that involves creating a custom graphical editor. The graphical editor has multiple tabs, and I want to create a preview function that will show a popup with Bitmap previews ...
1
vote
1answer
186 views
Auto RowDefinitions Grid with ContentControls
I have a Page with two ContentControls loaded by a RegionManager. A List of items, and a DetailView of these items. The problem is that the grid doesn't apply the auto height what I liked to. So I ...
1
vote
0answers
99 views
ContentControl render bug when using custom splash screen .Close() - what is going on?
I use a pretty basic ContentControl switching between different types of content:
<ContentControl Content="{Binding MyContent}">
<ContentControl.Resources>
<DataTemplate ...
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' ...
1
vote
1answer
235 views
Element addressing within a DataTemplate from a ContentControl
How do I access an element contained in a DataTemplate that is displayed through a ContentControl. I have a ContentControl which hosts a PresentationModel along the lines of:
<ContentControl ...
0
votes
2answers
31 views
Binding properties through DataTemplates and ContentControl
I liked this answer, and it almost fit me.
But, how can I achieve this if my DataTemplate is in a external ResourceDictionary?
I'm using Prism and I provide the DataTemplates (for generic CRUD ...
0
votes
2answers
54 views
Current page indicator MVVM
In my WPF application I'm trying to navigate to other 'pages' using the ContentControl.
I have this working so far, in my MainViewModel I have initiated the other viewmodels that should be a part of ...
0
votes
2answers
38 views
Get Window's visual content
I currently have this line of code which I want to work in all cases:
var visualWindowContent = (UIElement)window.Content;
This approach will work when Window.Content is a UIElement. But what ...
0
votes
2answers
66 views
ContentControl Arrange/Measure Child Panels
MyControl : ContentControl
|
ContentProperty
________|__________
...
0
votes
1answer
75 views
Custom content control default content
I have a WPF custom content control inherits from Control and when developer drags this control from toolbox i want it to have a default content like expander control has.
<Expander>
...
0
votes
0answers
86 views
How to get the active Row of the WPF DataGrid inside the TemplateSelector
I have a WPF Datagrid with three columns. The first two columns DataGridComboBox Columns. The third column is the Template column with ContentControl inside. I want to use this Datagrid as Data entry ...
0
votes
2answers
67 views
How to apply DataTemplate Style using DataTrigger
I'm trying to apply a ContentTemplate based on a Binding value. Problem is, it's not working.
I have a Default template, called TemplateA, I then want to display a style based on a databound value - ...
0
votes
0answers
38 views
Control displays no data when hosted in ContentControl
I have a really weird problem.
I have a control that can create and display graphs. It consists of a GraphControl which is hosting the graph. The graph itself can be created in a ViewModel and bound ...
0
votes
1answer
136 views
TextBox within DataTemplate, on GotFocus cannot assign SelectionStart?
I have a logic with my textbox which says, on focus move the selection start to the last character, so that the editing person can just continue writing.
This worked perfectly with this:
private ...
0
votes
1answer
120 views
Using a resource and DataTemplateSelector from a different assembly
I have a control in a base assembly with Content that I would like to set based on the current DataContext.
To do so, I am trying to use a resource and subclassed DataTemplateSelector in the calling ...
0
votes
1answer
108 views
WPF CustomControl ControlTemplate update TemplateBinding at Runtime
I have been experimenting with WPF and using a CustomControl have made my own panel type so I can make all my panels look like a box with backgrounds, rounded corners etc.
The trouble I am not having ...
0
votes
1answer
77 views
WPF: How can I get current inheritor ListView from DataTemplate
I have 2 inheritors of ListView:
public class FileListView : ListView
public class ThumbnailListView : ListView
In XAML I have following code:
<Window.Resources>
...
0
votes
1answer
112 views
WPF View not rendering on changing contentControl bound property
I am changing user controls on my main window using a bound property on a content control.
XMAL:
<ContentControl Grid.Row="0" Content="{Binding MainContent, UpdateSourceTrigger=PropertyChanged, ...
0
votes
1answer
642 views
WPF ContentControl Styling
How can I apply a style to the content of a contentcontrol. For example:
<Window.Resources>
<Controls:DataGrid x:Key="PersonDataGrid" AutoGenerateColumns="False" ItemsSource="{Binding ...
0
votes
3answers
245 views
WPF: Filtering items in ItemsControl and ContentControl
I have created a UI user control that represents a calendar month view. The control is consisted of 42 borders arranged in 7x6 grid (7 days in a week x 6 weeks to show per month).
Next, I have ...
0
votes
1answer
292 views
WPF contentcontrol routedevent resource file list for event
so I have a contentcontrol that has a routedevent:
public class TestBlind : ContentControl
{
public static readonly RoutedEvent VisibilityVisibleEvent =
...
0
votes
2answers
188 views
WPF contentcontrol extend beyond the bounds of its parent control
This is a sort of extension of this question I asked yesterday (the question gave me a contentcontrol that can overlay the current control). I now have a contentcontrol that can be overlayed on the ...
0
votes
2answers
542 views
WPF in a usercontrol set a controltemplate's content to the value of a dependencyproperty
I am pretty new to WPF, (using it for 3 weeks now), so I might be missing something stupid or not understanding what I am doing!
I am trying to create a modal type popup window that would cover ...
0
votes
1answer
95 views
Decorating UserControl WPF
I want to decorate some controls in groups like:
<UserControl x:Class="Infrastructure.UI.ItemsGroup" ... >
<Border BorderBrush="Black" BorderThickness="1" CornerRadius="5" ...
0
votes
1answer
614 views
WPF - Clipping ContentControl inside Canvas
I have a ContentControl and its content is a custom FrameworkElement. FrameworkElement has only one child and it is a DrawingVisual. Basicly the ContentControl is a container for the ...
0
votes
2answers
544 views
WPF: Can not find the Trigger target 'cc'. The target must appear before any Setters, Triggers
what is wrong about the following code?
I get this error during compilation:
The property 'TargetName' does not represent a valid target for the 'Setter' because an element named 'cc' was not found. ...
0
votes
1answer
461 views
WPF Access control inside ContentControl
I am having a very hard time trying to access my Grid (listBoxGrid) from inside the ContentControl from code behind. Any help or pointers would be great!
Thanks
Ryan
<Style ...
0
votes
1answer
634 views
WPF Expander in user control getting rendered transparent in ListBox item
I’m having issues with a WPF Expander that I have in a user control that gets rendered in a ListBox. Essentially I’m trying to get PopUpButton behavior on each ListItem in my ListBox. When I open the ...
0
votes
2answers
354 views
Binding to property on root element in DataTemplate through a ContentControl
In my user interface I sometimes want to put titles above usercontrols.
I want to declare these titles in XAML for future localizability, so I want to keep them out of the datacontexts.
Can ...
0
votes
1answer
335 views
Control's parent is null when placed inside a ContentControl
I've got a simple control derived from ContentControl with 3 properties.
My problem comes when I try to perform a control.TransformToVisual() with a control that is placed inside MainContent. It ...