0
votes
1answer
33 views

Command binding in code behind

I am trying to bind a command in code behind of a custom control. The control itself doesn't have a ViewModel but the page which it is going to be a part of has one. That view model has multiple ...
0
votes
0answers
25 views

WPF OxyPlot strange ContextMenu behaviour

I am working with Oxyplot library, trying to implement plot context menu. Code is pretty straightforward, <oxy:Plot Model="{Binding Plot.Model}"> <oxy:Plot.ContextMenu> ...
1
vote
1answer
43 views

How to add Command to ListBox.ItemTemplate

I have a WPF application using MVVM. This code is from my ResourceDictionary.xaml <DataTemplate x:Key="LogListTemplate"> <ListBox ItemsSource="{Binding LogList, ...
0
votes
0answers
46 views

ContextMenu Command Binding not updating with the DataSource

In my WPF application, there is a list to select an item from. The selected item will then be displayed in a ContentControl for further interaction. Depending on the type of the selected item (there ...
0
votes
1answer
174 views

No SelectionChanged event triggered in a ComboBox (WinRT with Windows.UI.Interactivity)

I am using recently released Windows.UI.Interactivity library to wire some events to MVVM commands in a WinRT app. It works fine for ListView, however no event is fired in a ComboBox. Here's a ...
0
votes
2answers
255 views

Hook up the key down in TextBox (MVVM)

Have a little problem with hooking up the keydown event without codebehind! So, we have the combobox <ComboBox Height="20" Width="auto" ItemsSource="{Binding AlignComboItems}" ...
0
votes
2answers
131 views

MenuItem with subitems binded to Commands. (MVVM)

Have a code like: <MenuItem ItemSource="SOURCE"> ..sub MenuItems </MenuItem> How to create the right template that allows to bind the each subitem to the save command.
1
vote
1answer
77 views

Command definition in a different class

I'm new to WPF so I'm not sure if what I'm doing makes any sense.. anyway: I'm trying to implement a command for a button that uses ApplicationCommands.Open. In my XAML I have: <Window ...
1
vote
1answer
82 views

How to start a new WPF page by pressing a button

I'M having a problem with start a new WPF page with use of commands. I tried with use a new WPF window by writing but nothing happens. I can't see the error? And the program works fine but when the ...
1
vote
1answer
233 views

WPF: Add a command to auto-generated by binding menu items

MVVM is used. I created separate menu 'Recent files' which gets its items from binding. It looks like that: <MenuItem Header="_Recent files" ItemsSource="{Binding RecentFiles, ...
1
vote
1answer
98 views

Bind to collection commands in data template

I have a list box with a collection as its data context and I have defined a data template to have specific view of collection items. I want to execute commands at the collection level that may apply ...
0
votes
2answers
175 views

Why are the datagrid delete command buttons disabled?

I have a DataGrid where each row has a delete button. If I set the Command="Delete" atribute on the Delete button element in XAML, the button is disabled at runtime. Why?? XAML: <Page ...
0
votes
2answers
87 views

Vim: How to create a custom compound command with no timeout?

In Vim there are certain built-in compound commands which have no timeout, for example: g waits forever for the next keystroke. I would like to create my custom compound binding to behave like that. ...
0
votes
2answers
295 views

Binding to base viewmodel command from View

I have a base viewModel and two derived viewModels from it. In my base viewModel I have some commands CloseCommand, CancelCommand etc. My View is attached to one of the derived viewModels. I need to ...
0
votes
0answers
198 views

Silverlight Command binding issue for controls

I am creating command to useing in silverlight xaml bindings. But the command are not working outside the Controls. I am usinf ESRI silverlight API. API has a control named map. public sealed class ...
0
votes
1answer
84 views

silverlight commanding event callback object

I am passing the button to my MouseEventCommand class. My Command class is here public static class MouseEnterCommand { public static ICommand GetCommand(Button button) { return ...
0
votes
1answer
263 views

Capture Silverlight ControlTemplate button command event

I am having issues getting an ICommand, in this case a MVVMLight RelayCommand, to fire in the ViewModel from a ControlTemplate in my Silverlight application. Everything on the UI renders correctly ...
0
votes
1answer
205 views

Invoking multiple command targets from a single command source

i need to invoke multiple instances of a command for this example i'll take 2 controls 'A' and 'B' 'A' would be the Invoker and 'B' the invokie and there are multiple instances of 'B' the ...
1
vote
2answers
222 views

Binding a command doesn`t work

I'm beginner in WPF development. I create some window with frame inside. I wrote a template for the frame and i`m trying to bind to the buttons inside the freame template commands without success. ...
3
votes
3answers
671 views

MouseDown, PreviewMouseDown, etc… and COMMAND Binding in MVVM

I'm trying to understand this concept and it's eluding me. What is the general concept behind this? I know it's possible, but I'm not totally following how to do this based on my research/own test ...
0
votes
3answers
353 views

Binding a command defined in a datatemplate

I know there are few answers on this topic. But none of them was working in my case. I have a ListView with a style and an ItemContainerStyle. In the ItemContainer Style, I define some triggers in ...
1
vote
2answers
843 views

Different Datacontext for Command and CommandParameter

Is it possible to have a different Datacontext for a WPF Command and a CommandParameter? <UserControl> <UserControl.Resources> <viewmodels:ListViewGridBaseViewModel x:Key="vm" ...
2
votes
5answers
1k views

Force binding to update when Command is triggered

is there a way to update a binding before or when a command is triggered? I have some text fields I can edit and save using a command, accessible via a keyboard shortcut. As the binding is usually ...
0
votes
1answer
347 views

WPF RibbonApplicationMenuItem Command Binding

Build a menu using the WPF Ribbon. My application is in the MVVM pattern. To connect the RibbonButton the ViewModel, use the form: Command="{Binding Logoff}" It works correctly. Now, using the ...
0
votes
1answer
301 views

CommandProperty to button column added dynamically in DataGrid doesn't work

I have a DataGrid bound to an ObservableCollection. I add cols dynamically. Cols struc is 1st col is TextBlock rest all are Buttons. I have certain issues with the buttons : I want to set Command for ...
1
vote
2answers
213 views

Dynamically generated TextBox and Input Bindings : Where to put the Commands

I'm generating a List of TextBoxes within an ItemsControl like so : <ItemsControl ItemsSource="{Binding CurrentCandidate.Properties}"> <ItemsControl.ItemTemplate> <DataTemplate> ...
1
vote
1answer
583 views

Binding a Command inside a Style

I'm currently working on a WPF application that uses MVVM. I've got a ListBox with a style set up to make it display like a RadioButtonList as follows: <Style x:Key="RadioButtonList" ...
0
votes
2answers
292 views

How to execute a command when the user opens the DatePicker calendar in WPF?

I'm using a DatePicker in a WPF window and I need to execute a command to refresh the MVVM data when the user tries to open the calendar window. The DatePicker does not have a Command property. Is ...
1
vote
0answers
959 views

Silverlight GridViewComboBoxColumn Binding Commands with MVVM Not working

I am trying to run a command from a GridViewColumn, and the RadGridView is bound to my ViewModel. The code below runs the command, but when I select a value from the ComboBox, it saves the row ...
1
vote
0answers
225 views

WPF MVP command binding

Maybe someone can describe me how to properly organize commands binding in mvp design pattern? Now i have this solution: I have commands class: public class Commands { private static readonly ...
1
vote
3answers
1k views

Cannot pass/bind command to WPF user control

I'm trying to pass a command to an element in a WPF user control. <UserControl x:Class="MyApp.MyControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
2answers
322 views

Silverlight Binding to commands

Sometimes when I bind to commands to a ViewModel, my CanExecute code does not always get called and hence my buttons are not disabled when they should be. Any ideas? Thanks
1
vote
1answer
853 views

Binding WPF Events to MVVM ViewModel Commands in code behind of View

I got the below solution in XAML side to bind an event to command and it works just fine. References xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" ...
2
votes
2answers
1k views

WPF Listbox commands

Ok, my program in a nutshell has a list of customers. Those customers are all listed in a listbox so when one is clicked on all of their information appears on the form. This works through ...
0
votes
2answers
2k views

Button Command not binding to ViewModel in DatGrid

I have ViewModel, Which has a ObservableCollection[Employee] EmpCol , now that ViewModel is bind with my View and and EmpCol is set as with ItemSource of custom control. That custom control generates ...
4
votes
2answers
2k views

Multiple Key Event Bindings in Tkinter - “Control + E” “Command (apple) + E” etc

Mac OS X 10.6.6 - Tkinter I want to bind multiple-key events, and while I have found an effbot article and the Tk man pages, I've been unable to make this work correctly. I'm new here. I've had ...
0
votes
3answers
1k views

WPF + Binding Command and Header of a Context Menu Item using MVVM

I created a WPF application and am following MVVM Pattern. I have a context menu in my xaml and I need to bind the command and Header text. Using the following code I can bind the Header of the ...
0
votes
1answer
442 views

Binding a command to a child window's datacontext

I have a window called MAINWINDOW that has a toolbar and a frame. Inside the frame is shown a Page called HOMEPAGE. This page has a treeview where menu options are shown. When the user clicks a node, ...
0
votes
1answer
605 views

WPF User Control XAML Commands

I've got a 3.5 WPF User Control with two buttons and I'd like to be able to bind commands to these buttons via the User Control's xaml. x:Usercontrol x:Name:fou Button1Command="{Binding ...
3
votes
1answer
858 views

MVVM Framework for MonoDroid?

Is there a MVVM-framework for MonoDroid already? Or is MonoDroid able to do binding of Porperties and Commands by itself maybe? (like MVVM Light Toolkit for WPF/Silverlight/WP7 for example)
1
vote
2answers
1k views

Problem Binding Commands to TreeViewItem using MVVMLight

I'm trying to use MVVMLight to bind a TreeViewItem Selected event to a command. The TreeViewItem's are defined in a HierarchicalDataTemplate so I cannot add Interaction.Triggers (as shown below) ...
0
votes
1answer
193 views

Disbable a key shortcut in Eclipse PDE

I'm struggling with a problem in the PDE environment of Eclipse. The RSE perspective configures a key shortcut as CTRL+SHIFT+A. I'm trying to disable this key shortcut when a user is working in our ...
3
votes
2answers
305 views

Can we have buttons in a validation template, and how can we bind it to the ViewModel method?

Requirement: Need to display an error message when the user types a forlder name that doesn't exist as shown below: Problem: I am able to display the UI but not able to call a method in the view ...
4
votes
1answer
3k views

MVVM Listbox Update Content Maintain Selected Item Silverlight

I've been reading a lot about MVVM (using Laurent Bugnion's library in specific) and I'm constantly struggling to determine how to do things in MVVM that were otherwise easy with code behind. Here's ...
0
votes
2answers
261 views

WPF Binding Command

I have following checkbox: <dxe:CheckEdit Margin="2,0" IsChecked="{Binding SelectedContact.isMajor,Mode=TwoWay,Converter={StaticResource CheckBoxNullToFalse}}">More than ...
0
votes
1answer
465 views

CommandTarget bindings to Application.Current is null

I have a command binding whose CommandTarget is supposed to always be the parent application. The binding looks like this: CommandTarget="{Binding MainWindow, Source={StaticResource ...
3
votes
2answers
3k views

WPF: Bind to command from ControlTemplate

I am trying to add a button to a custom ListView (MyListView) which triggers a command (MyCustomCommand) defined in MyListView. I have added the button (and a title text) by applying a ...
0
votes
2answers
235 views

WPF command not executable

I have a button on a toolbar that has its command set to "MyControl.Print" (for example). In the control the command is added to the command bindings including both the Execute and CanExecute. The ...
2
votes
3answers
5k views

WPF MVVM Button Control Binding in DataTemplate

I've seen other questions that deal with this, but never any explicit code describing the fix. I can't get a button inside of my ItemTemplate to bind to ANY command anywhere. Very frustrating. I am a ...
0
votes
1answer
553 views

Silverlight Command Binding

I am looking at the following xaml: <Grid x:Name="LayoutRoot" Background="White"> <Button Content="Say Hello..." VerticalAlignment="Center" ...

1 2