Tagged Questions
The contentcontrol tag has no wiki summary.
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
160 views
Implement a “do not disturb / distract me” mode in Windows
I want to implement a "do not disturb" mode in my application. Basically they enable this mode, and we block certain applications like MSN / Skype / etc from disrupting the users' focus.
It's an ...
5
votes
2answers
667 views
Why would I want IsTabStop set to true on a ContentControl?
Given the following:
setting IsTabStop to false on a ContentControl will not prevent its content from acting as a tab-stop
setting IsTabStop to true will result in an invisible tab-stop, which does ...
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
109 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
204 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
3k views
Content control contents sizing to fill in Silverlight 4
I have a style for a ContentControl which I want to use in places where I currently have a Border. When I use this, the child controls will not stretch to fill and only take a small amount of space. ...
3
votes
3answers
2k views
Replacing Content Controls in OpenXML
I need something as a placeholder. I at first looked to Content Control as a solution but I'm having some problems with it.
I then looked into adding CustomXML to the .docx but turned away from that ...
3
votes
1answer
628 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
406 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
966 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
565 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
3answers
324 views
Export the content of content control into another word document
I have a word document with many content controls. How can I export the content of content control into another word document?
I'm using C# and open xml sdk.
Regards.
2
votes
1answer
458 views
References to Controls in ContentControl are null at the Parent (Page) Level
As a follow up to this question where it was suggested I use a ContentControl, I have run into a scenario when I use a custom made class that dervies from ContentControl on a page, any controls ...
2
votes
2answers
914 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
3answers
240 views
Set <asp:content> content in C#
I'm currently learning to use MasterPages and ContentPlaceHolders in ASP.NET 3.5 and C# - and right now, I'm desperately trying to edit the contents of an asp:Content-Control through my programming ...
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
15 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
67 views
Word 2010 Content Control Corruption on Reload
We're experiencing a problem building templates in Word 2010 that feature Content Controls. These templates are used in conjunction with a custom system we have inherited that uses them to build ...
1
vote
0answers
195 views
Binding a data template selector to a content control template
I would like to bind a content control to a data template selector, bind a variable to that content control and then display a different template depending on what the variable contains.
I've managed ...
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
240 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
163 views
Two dynamically assigned ContentControls in single view in Caliburn.Micro
I have a UserControl that contains two ContentControls that need to have different UserControl Views bound to them at runtime. The attached-Property solution noted here does not seem to work in ...
1
vote
1answer
307 views
TemplateBinding to RowDefinition.Height ignored in ContentControl
Description:
I have a custom content control and I am trying to enable some external settings via dependency properties. Basically it's a decorator panel with two grid rows, upper one is the header, ...
1
vote
2answers
206 views
How do I load controls in different ContentControls of a Shell using CaliburnMicro
By default when you use "ActivateItem(new Control());" your control is loaded into a ContentControl which with the name ActiveItem, fro example. . If I have multiple content controls on my page how ...
1
vote
2answers
679 views
Loading Views into ContentControl and changing their properties by clicking buttons
I have a mvvm(model view viewmodel) silverlight application that has several views that need to be loaded into ContentControls (i made it all in expression blend). What i dont know how to do is, for ...
1
vote
1answer
954 views
Get ContentControl Control's Template Children?
We're working on a Silverlight application that uses a generic custom ContentControl. This ContentControl has a Control Template specified in a Generic.xaml.
The inherited ContentControl's ...
1
vote
1answer
96 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
180 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
0answers
292 views
Silverlight 4 custom control binding order is different when inside ContentControl
I have a custom container control that has a number of dependency properties. One of which requires element binding.
Most of the controls logic is within the OnApplyTemplate() method. When I test ...
1
vote
0answers
116 views
Word interop- ParentContentControl is null for content control contained within a simple text box
I am using word interop to edit docx files. In word doument I can have multiple nested content controls, in some cases I have a content control 'A' containing a text box (simple text box inserted ...
1
vote
2answers
349 views
OpenXML: Creating reusable Content Controls with binding
I need to attach specific XML to a word document so the elements will show up in the right places. This I can do with OpenXML SDK.
The thing is I want too be able to define the Content Controls ...
1
vote
1answer
576 views
Cannot turn off Design Mode in Word VBA
I'm stumped about this thing - when recording a macro where I basically add some fields and go into Design Mode to be able to replace the dummy text of the placeholder. Now, I go out of Design Mode ...
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
2answers
248 views
DataTemplate defautl visibility for ContentControls
In my MVVM based WPF application I have a lot of different ViewModel types that dynamically loaded into ContentControls or ContentPresenters. Therefor I need to explictly set what DataTemplate is to ...
1
vote
0answers
340 views
Inserting a ContentControl after another ContentControl
In our VSTO Word 2010 Addin, we are trying to insert a RichTextControl after a given other ContentControl. We have tried this:
public ContentControl AddContentControl(WdContentControlType type, ...
1
vote
2answers
144 views
Open XML document ContentControls problem with signed id's
I have an application that generates Open XML documents with Content Controls.
To create a new Content Control I use Interop and the method ContentControls.Add. This method returns an instance of the ...
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
2k views
jQuery Tabs with Masterpage - space between tabs and tab content
I'm trying use jQueryUI tabs in a content control. The code below works on a page that doesn't use a MasterPage. When I use it in a content control there is a large gray space between the tabs and ...
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
27 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
0answers
14 views
Set text in an existing contentcontrol in word 2010 with c# and VSTO
I've been looking and googling around for 4h to find a solution for my problem.
I'm trying to set the text of an defined rich text content control.
For test purposes i defined just one content ...
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 ...