Tagged Questions

3
votes
1answer
133 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> ...
2
votes
4answers
1k 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
2answers
947 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
250 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 ...
1
vote
2answers
39 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
0answers
354 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, ...
0
votes
0answers
25 views

Trouble Binding UserControl to UserControl

I've having some trouble binding a user control to a user control. I think its because the Data context of the first user control is binded to a view model, while the second user control is binded to ...
0
votes
1answer
48 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
0answers
130 views

Selecting content control in word

I am working on an addin to MS Word that will handle content controls Lets assume that we have 2 cases of selected content control in Word 2007 Case 1: Entire content of content control is ...
0
votes
1answer
114 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
2answers
580 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
2answers
1k views

Two-way binding on a ContentControl

I'm creating a Key/Value pair editor and would like for the value to have a custom template based on the data type. <TextBox x:Uid="txtKey" x:Name="txtKey" Grid.Column="1" Grid.Row="0" ...
0
votes
2answers
603 views

Code for adding Content Controls Word 2007 C#

I was wondering if anyone has any idea how I can add Content Controls to a Word Document (Office 2007) from the Document Task/Action Pane via C#. The goal is the following: I want to have ...