Represents a WPF control which can contain a single piece of content that can be of any type.
0
votes
0answers
19 views
Template the content control for multiple types - radio button and tabitem
So, what I set out to do is template my radio buttons and tab items to look the same so that they look the same but can act differently. SoIi created a Control template and targeted it to the Content ...
0
votes
1answer
28 views
ContentControl with special border
I want to write a ContentControl to host other controls and give them a special border.
So I added a new UserControl, made a ContentControl of it. It is having a grid, on the outer sides I want to ...
0
votes
0answers
27 views
Templated control with multiple ContentControls correctly in wp8
I need to create a templated control with multiple contents in silverlight, it work but visual studio doesnt recognize the ContentControls in the treeview, i want to achieve a result like this:
How ...
1
vote
1answer
51 views
ContentControl with DataTemplateSelector and binded Content
I have the following ContentControl two-way binded with a Current property that shows the current selection of my ListView.
<ContentControl Content="{Binding Current}" ...
0
votes
1answer
25 views
Change ContentControl content with button click
I have a ContentControl which is bound to this DataTemplateSelector:
public class PropertyPageTemplateSelector : DataTemplateSelector
{
protected override DataTemplate SelectTemplateCore(object ...
0
votes
1answer
43 views
ContentControl does not change the content - function never called
I want to change my content off an AppBar dynamicly whith this code:
<Page.Resources>
<local:AppBarSelector x:Key="myAppBarSelector"/>
</Page.Resources>
...
0
votes
2answers
80 views
WPF ContentControl not displaying anything
I am trying to build a Control that selectively displays different things based upon the types that are passed in, but for some reason I end up displaying nothing at all.
Is there some fundamental ...
0
votes
1answer
22 views
Load a Page into a ContentControl
I have a ContentControl where I want to load the page myPage2. My XAML Codefrom this page looks like this:
<Page x:Class="ExampleApp.myPage2">
<Grid x:Name="Content" Height="651" ...
0
votes
1answer
69 views
Setting ContentControl's background color in XAML
For the life of me I cant seem to figure out this simple task of setting the ContentControl's background color:
<ContentControl x:Name="Content03"
Width="130"
Height="130"
...
0
votes
0answers
24 views
previous list item's ViewModel field is set to nothing when list's selected item is changed to a new one
i am writing in VB for store app framework.
Settings:
I have a list of viewmodel objects. It is represented in a ListView. Selected item of this ListView is bound to Content property of a ...
0
votes
1answer
39 views
ContentControl VisualStateManager
I've a ContentControl which binds it Content to a variable
<ContentControl x:Name="MyContentControl" Content="{Binding MyContent}" />
The ContentControl is in my view 'MainPage.xaml'
When ...
1
vote
1answer
147 views
Binding ContentControl Content for dynamic content
I'm currently trying to achieve the functionality of a tabcontrol with hidden tabs by using a ListView (as tabs) and a ContentControl with Binding the Content Property.
I read a bit on that topic and ...
0
votes
0answers
24 views
New item activated in Conductor does not show it
I'm activating new item in conductor using Caliburn.Micro.Contrib's ConductResult. Conductor is of type Conductor<IScreen>.Collection.OneActive, and there is already one item showing and working ...
1
vote
1answer
126 views
Binding a ContentControl to UserControl, and reuse same instance
I'm trying to bind a ContentControl's Content to a UserControl I have instantiated in my ViewModel. I cannot use the method with binding to a ViewModel and then have the UserControl be the ...
1
vote
2answers
102 views
Display same content twice in WPF Button
We want to style a wpf button so that the content set in the button is displayed twice. The reason for this is that we want to achieve a drop shadow effect of the button's content. Out thought was to ...
0
votes
1answer
147 views
Contentcontrol unable to update when content property changed from call within the loaded usercontrol
I have a MainView that holds a single ContentControl, the ContentControl loads up a default usercontrol when the application loads.
<ContentControl x:Name="MainContentArea" Content="{Binding ...
3
votes
1answer
51 views
PHP script or API for filtering inappropriate content
I run a website where aspiring writers post their writing. Naturally, some of this writing can be of a 'sensitive' nature. Sometimes it contains a lot of swear words, sometimes it's malicious, ...
1
vote
1answer
70 views
Fallback or default value for Content binding to ValueConverter
I have a content control that shows dynamic content based on the current state. This all works fine but, for design time, i'd like it to show the default state. Is there any way I can do this using ...
0
votes
1answer
34 views
Show contents of Window in ContentControl
I have a window named InstallerView and wish to display its contents within another window via ContentControl. What is the correct syntax as currently this doesnt work?
<ContentControl ...
0
votes
2answers
86 views
How to stablish a viewModel to a ContentControl
I've got a usercontrol which defines a ContentControl like this:
<ContentControl x:Name="PART_contentHost" Grid.Row="1"/>
In the viewmodel I will get a viewModel which will be displayed ...
1
vote
1answer
159 views
MS Word 2007 - How to set up placeholder text to mimic text but not formatting
I'm probably biting off more than I can chew with this particular problem, but I'll try to be as specific as possible in case it's within my scope. Disclaimer: I'm not terribly experienced with MS ...
2
votes
1answer
114 views
How to Bind To Data within a Datatemplate of a ContentControl
I have the following simplified Example:
<Window x:Class="TemplateBinding.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
2
votes
1answer
114 views
Content Control in PHP
I am trying to find an api or php technique that can read a docx document, remove some MS Content Control Values, and then recreate the same docx document while preserving all MSWord content and ...
0
votes
0answers
55 views
Copy <pkg:part></pkg:part> tags from one <pkg:package></pkg:package> to another using open xml 2.0
I have retrieved a string of XML which contains the content of a single rich text content control using the property contentControl.Range.WordOpenXml in VSTO (C#).
This contains a number of ...
0
votes
0answers
108 views
Implementing ISCrollInfo for WPFExtension's ZoomControl. Calculating Offsets
I'm trying to implement IScrollInfo for WPFExtensions' ZoomControl in order to be able to use this control in combination with ScrollViewer. However I'm having difficulty understanding how to ...
0
votes
0answers
170 views
Triggering a command using Interaction.Triggers of a button click event in a content control that is binding to a view of which the button is a child?
I am using the MVVM pattern in WPF with C# as the language and I am currently trying to set an event trigger for a button that will be in a content control [TabControl>TabItem>ContentControl] that is ...
0
votes
1answer
263 views
Word 2010 richtext content control selects all content at once
I have added a richtext content control in a word document 2010 using VSTO (c#)
The document is password protected and every time a user opens the document I set the editor property of the content ...
0
votes
1answer
164 views
How to move with an animation a ContentControl WPF
I'm trying to simulate this effect on an OnLoad page:
The blue square represents the beggining transaction, and the red one the end of the animation.
In WPF, that square is for me a ...
0
votes
1answer
534 views
Interaction Triggers Embedded in ContentControl
So to keep the question simple what I need for example is to use something like this dozens of times;
<Rectangle>
<i:Interaction.Triggers>
<i:EventTrigger ...
1
vote
0answers
231 views
Loading an XML file into Word with Content Controls
I've got a situation where I want to be able to use Word as a Viewer of sorts for XML files that I have defined by an XSD file. I was considering using Content Controls, but I can't find a way to ...
1
vote
0answers
358 views
ContentControl get all Elements inside DataTemplate without knowing the Name?
i want to get a list with all elements of my current usercontrol. Not only the one in the LogicalTree, ALL elements inside the defined and used datatemplates in the usercontrol.
When iam iterating ...
0
votes
1answer
219 views
Is there some event showing that new ContentTemplate is completely applied?
I have a ContentControl that I want to change it's ContentTemplate in some event. I want to add some values (text to TextBox) when control in ContentTemplate loaded.
But, I has discovered that new ...
1
vote
1answer
189 views
ContentControl not showing up without specifying width/height
I am using CefSharp in my WPF project. I'm adding the CefSharp.Wpf.WebView class to my MainWindow.xaml like so:
_webView = new WebView(url, _settings);
My XAML layout looks like this:
<Window ...
0
votes
1answer
208 views
ContentControl With ScrollViewer, Focus
In my Windows 8 Metro project, I'm using a class derived from ContentControl (let's call it MyControl) to present my content. Inside MyControl I have a ScrollViewer. Because I want my control to ...
0
votes
1answer
689 views
Creating a login page for Win 8 apps
I'm trying to have a login page for my app, jus like the windows login account. But this is not a account sign in. Once the user sets a password, every time the user opens the app afresh, it asks for ...
0
votes
2answers
158 views
Changing Conent Control template on Menu Item click?
Can you please tell me how to change content template when, in WPF, when it is clicked on different Menu Item headers. I've defined user control that I can put it as a template.
For example: Menu ...
3
votes
1answer
309 views
WPF - Unable to bind properties of control in ContentPresenter to parent control
I have a custom control that is used in a form, this control combines a label and a textbox. When the form is in read only mode the control is changed to show a label instead of the textbox.
To do ...
1
vote
2answers
116 views
Setting the DataContext of a control after a data triggered is fired
I have a view which contains a ContentControl which has its ContentTemplate changed dynamically depending on a boolean property within the view model using a data trigger.
...
0
votes
0answers
50 views
Focus is not being lost on Switching Templates programatically
Following is the code sniplet,
I am trying to change templates for a contentcontrol when changing from editable mode.
<ControlTemplate x:Key=Temp1>
<TextBlock Text="{Binding Content, ...
0
votes
1answer
443 views
ContentControl not showing Content
I have a custom ContentControl which has a fixed XAML layout like a UserControl (Rather than the usual applied generic template).
Previously this layout had no extra markup, so it was literally:
...
0
votes
0answers
164 views
ContentControl with Datatemplate Content stretch
I have a Content control, and I would like to stretch the content trough the width of the screen but for some reason my solution just wont work...
<ContentControl Grid.Row="1" ...
1
vote
2answers
771 views
“Content of a ContentControl must be a single element.” exception
I'm new to WPF so this may be a stupid question but here it is.
I'm trying to create custom button using the XAML thing, so this is what I have:
<Button x:Class="Controls.ShinyButton"
...
0
votes
1answer
2k views
Wpf contentControl
New programmer question:
I'm trying to create a simple navigation welcome page similiar to wht you whould see on an ipad.
My MainWindow has a titlebar (which wont change) and the rest will be a ...
0
votes
2answers
591 views
interesting ContentControl binding
First off I should say I an a newbie programmer and all help is appreciated. I'm currently working on a wpf application in which I would like to have usercontrol that has a label and a contentcontrol ...
0
votes
1answer
133 views
How to conditionally insert a Checkbox in a list item of a customized ListView when using class inheritance?
I try to make a customized ListView which fills each list item with some stuff and an initial Checkbox if the concrete inheriting class wishes so. Currently no Checkbox is displayed so I guess my code ...
0
votes
1answer
582 views
Remove content control from a word document read from sharepoint
I have a contentcontrol with the text draft in a word document.
In sharepoint there is an application page to generate pdf documents from word documents, however I have to remove that draft text.
The ...
0
votes
1answer
136 views
How to conditionally insert a Checkbox in a list item of a customized ListView?
I try to make a customized ListView which fills each list item with some stuff and an initial Checkbox if desired. Currently no Checkbox is displayed so I guess my code of the ContentControl stuff is ...
0
votes
3answers
334 views
Dynamically show/display wpf content
As the title says, I want to hide or display some content dynamically. I have two buttons working like radio buttons. Each button has to display a specific content, but the two contents must not be ...
1
vote
2answers
373 views
Assign tab content in WPF to a page
I am trying to add dynamic tabs to my application. Right now if I click a button, it will open a new page. What I want is to open this page in a new tab. But when I set up the tab content to a page , ...
0
votes
1answer
159 views
using xaml to define content of user control and binding data
I am trying to create a user control that has a contentcontrol which binds its content tio a dependancy object. The code is as follows
Xaml
<ContentControl Grid.Column="1" ...




