0
votes
0answers
13 views

In Silverlight, How to bind SelectedItem of ComboBox in a ControlTemplate to a ViewModel Property

I have this code of a ComboBox that works and binds the SelectedItem to a property in my ViewModel: dxe:ComboBoxEdit x:Name="luTeacher" Margin="0,5,0,0" AutoComplete="True" ItemsSource="{Binding ...
0
votes
2answers
184 views

Adding “Today Button” to Calendar Control

I have the following style in my WPF MVVM app. <Style x:Key="DefaultCalendar" TargetType="Calendar"> <Setter Property="Template"> <Setter.Value> ...
0
votes
1answer
164 views

Performance degredation with custom ListBox ControlTemplate

Using a template for a custom control deriving from ListBox causes filtering of ItemSource to become slow. The filtering is done in the get of the ItemSource that the control is bound to. This problem ...
2
votes
1answer
63 views

Inheriting from a control vs Creating a new control template

I'm creating a WPF application (which is also MVVM based), what should I consider when deciding whether to inherit and create a Custom Control vs creating a new style template for that control. I ...
0
votes
1answer
63 views

How to make two independent instance of a ControlTemplate In a window?

i have a controltemplate with a textbox and a button,the button open a sub form to select something and show selected item in the textbox,like this: <Window.Resources> ...
0
votes
1answer
275 views

Giving a button in a textbox functionality, without using a custom control but overiding the textbox template

I implemented a button into the textbox overriding the template with the code below: <Style x:Key="{x:Type TextBox}" TargetType="{x:Type TextBoxBase}"> <Setter Property="Template"> ...
0
votes
1answer
134 views

capture events from lookless control button

I have create a lookless control to be used in a Silverlight 4 project. This control contains a button and I would like to capture the click event. The Generic.xaml contains <Style ...
0
votes
2answers
88 views

How can I bind multiple ListViews within a single template?

I have a ControlTemplate for 3 ListViews. Im Using the Template on a ListView eg. Template="{StaticResource listViewTemplate}" When i try to bind a Collection to the list views ItemsSource nothing ...
0
votes
3answers
653 views

How do I make a ControlTemplate (for a checkbox) readonly in WPF/MVVM?

I've got a WPF datagrid where I've created a ControlTemplate for a checkbox to represent a bool? type. I'd like for the checkbox/control template to readonly to the user, but be able to change the ...
0
votes
2answers
2k views

MVVM Invoke Method in View (from ControlTemplate via ViewModel)

I would like to know how the following problem can be solved WITHOUT using Event Aggregation. This is for WPF 3.5 SP1, so the CallMethodBehavior is not available. Simple Scenario: A click on a button ...
0
votes
1answer
179 views

How to avoid waiting for Silverlight templated control initialisation in context of MVVM

I'm trying to make and use templated controls in an application but I seem to run into timing isssues. When I use a custom templated control, in XAML <local:MyControl> and through code (new ...
0
votes
1answer
1k views

Change ControlTemplate of ContentControl in View using MVVM

I have two resources Dock and Undock in my View which is a UserControl(Dock.xaml), Following is xaml code <Grid> <ContentControl Template="{StaticResource Dock}"/> </Grid> ...
2
votes
2answers
755 views

MVVM/Commands and ControlTemplates

I'm currently playing around with a MVVM/Commands and ControlTemplates. What I'm trying to do is quite simple. I want to have a list of e.g. Persons, where the user can trigger an action on each of ...
0
votes
1answer
813 views

SilverLight - Binding a command to button within control template

I have a datagrid. Within that datagrid, I have bunch of column headers styles. Inside the control template of this style, there is a button. I need to bind a command to that button. Note that, ...
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 ...