0
votes
1answer
26 views

WPF Howto create a reusable composite component with configurable content?

I would like to create a component that is made up of an arbitrary control and a little button beside this control (same as in this example: http://putridparrot.com/blog/wpf-composite-control/). My ...
0
votes
2answers
156 views

ControlTemplate to button with images - Silverlight for WP7

I have a ControlTemplate which targets a button control. The ControlTemplate has two images for the normal and pressed states, one for each. I want to use this ControlTemplate in 8 different buttons ...
3
votes
2answers
126 views

User control vs Control Template in WPF

I have recently reviewing someone's code and come across a User Control whose UI is like this screenshot This control has no code in its code behind file, i am thinking we could move all the xaml ...
1
vote
2answers
164 views

How is TemplateBinding working in UserControl Template?

I am new one to create UserControl and now I am trying to customize the UserControl Template as below: <UserControl x:Class="WpfApplication1.PieButton" ...
0
votes
0answers
45 views

ControlTemplate doesn't find Resources anymore

I first created a UserControl. In the xaml I can reference StaticResources that are in the main Application's Resources. I then refactored this UserControl to a Control and via Themes/Generic.xaml, I ...
0
votes
1answer
243 views

Access `DependencyProperty` via XAML and evaluate it?

I just created a DependencyProperty for my custom button. The property is called IsChecked. If IsChecked == true my button shall change its background color to something else and keep this color until ...
0
votes
0answers
59 views

User Control - Button Template and Command Binding

I have created a UserControl with a button element and its ControlTemplate in it. Also a DependencyProperty ExecuteCommand of type ICommand exists in which the button command is bound to it. The ...
2
votes
1answer
537 views

How to use TwoWay binding from within a UserControl?

I have my own UserControl, a LabeledTextBox which is the combination of a Label and a..well, TextBox. This Control has two properties: Caption which will be bound to the caption of the Label, and ...
1
vote
2answers
654 views

UserControl Within Template of another UserControl Loses values on postback

This may be the really wrong way of doing this and so if it is please let me know!! I have a user control called ucDropDownList.ascx. It basically is a drop down with a button besides it. When the ...
3
votes
3answers
342 views

How to adjust width according to the space available for wpf toolbartray

I am using around 10-15 controls inside a WPF ToolbarTray control, Now the issue is while I am changing the resolution the controls present in it is not adjusting according to my need in case of ...
8
votes
1answer
606 views

In WPF, How to apply style to UserControl in design view?

I usually define style and control template in App.xml under tab. So, while designing the UI, I can see the UI with the style applied in design view in Visual Studio 2008 with .NET3.5. However, in ...
2
votes
1answer
367 views

WPF Custom UserControl as a RadioToggleButton

I've created a custom UserControl that functions like a RadioButton but looks like a Toggle Button. The only issue I'm having is being able to set the Content property of the UserControl and have it ...
0
votes
3answers
159 views

Searching for a Best DataTemplate knowledge in WPF and the Properties used in it?

I want brief knowledge about Data Template for Customizing a control(like Combo Box,List Box etc.)in WPF using C#.NET. So if anybody have any links or sample applications then share it with me ...
1
vote
1answer
600 views

WPF Changing text in a controltemplate at run time

I am making a template control so that I can have a button with an image that changes when you click it. I also am trying to get text on top of the button that can change at run time. I have the ...
1
vote
0answers
342 views

GoToState not working on controltemplated usercontrol based on combobox

I'm trying to create a custom combobox that shows a loading animation when a bool property is set on it (e.g. IsLoading). I've created a control template in Blend based on the combobox, and added a ...
1
vote
1answer
643 views

GoToState does not work for ControlTemplate in UserControl

I am totally lost and I would really appreciate your help on this. My final goal is to create a user control that will contain two control templates. Square and a Circle. Based on a type the control ...
0
votes
1answer
287 views

WPF design UserControl / DataTemplate problem

I have a WPF UserControl representing a Person with many fields. Some Persons can be a company. In this case I'd like to use another template with other fields. The code behind is the same, that's why ...
1
vote
1answer
2k views

DataBinding of a UserControl via ControlTemplate

I'm playing around with the Infragistics xamDataGrid. I'd like to display in a "Field" (= Cell) a custom UserControl and have for it the Field's DataContext. Somehow the DataContext is always null :-) ...
23
votes
2answers
9k views

WPF ControlTemplate vs UserControl

I've recently made an UserControl, which took quite a long time, because I had to work with custom Dependency Properties and so on... Anyways, it was just a bunch of 3 controls: TextBox, Popup with ...
6
votes
1answer
2k views

WPF: Make Whole Border Clickable

I'm trying to implement a button in WPF which shows a menu when you click it. I've got everything working, and the ControlTemplate for the control is shown below. (The control extends ToggleButton). ...
1
vote
1answer
937 views

Is it good idea to mix ControlTemplate with user control?

Is it possible and a good idea to have user control (public MyControl: UserControl) which supports both ControlTemplates and existing content? I have understood that ControlTemplates should only be ...