Tagged Questions
0
votes
1answer
28 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 ...
2
votes
1answer
100 views
Silverlight 5 - How can I use plain CLR Objects in XAML as a CommandParameter?
I would like to know, if it is possible, to use simple C# CLR Objects as a Command Parameter in XAML, like I do it with MarkupExtensions.
For example, I use my own Markup Extension, which looks like ...
0
votes
2answers
294 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
260 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 ...
1
vote
2answers
642 views
Silverlight: How do I pass True to a CommandParameter?
How do I pass True to a CommandParameter?
Currently I am imperatively adding Boolean.True to the resource dictionary, but that seems like a clumsy way to do it.
5
votes
5answers
4k views
How can I realize SelectionChanged in MVVM ListBox Silverlight
The ListBox control does not implement a Command property. I have to attach some functionality to the SelectionChanged event. Somebody knows how can I do it? Please help me
1
vote
0answers
955 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 ...
0
votes
0answers
147 views
Binding Commands to a Sub Viewmodel
I am trying to Bind a Command to a ViewModel which is a property of another ViewModel. If I bind to a command in the parent viewmodel (ie; the DataContext), it works fine. If I try binding to a ...
0
votes
0answers
143 views
What is the best way to create a Silverlight Button List (Multiple action button)?
I am wanting to create a "multiple action button" for want of a better name. i.e. a button that appears similar to the ComboBox, (i.e. content with a toggle arrow up one end), where the root content ...
2
votes
1answer
417 views
How to bind view's loaded event to a method in the view model in WP7.1
I want to process a Page_Loaded event of my View (PhoneApplicationPage) in a view model. This used to be accomplished by the following:
<i:Interaction.Triggers>
<i:EventTrigger ...
2
votes
4answers
2k views
How can I activate a button's Click command on Enter key press?
I'm developing an app using SL Prism and MEF using MVVM.
I have my login page which currently contains a username and password textbox and a single login button. The code for my button is as below:
...
1
vote
1answer
84 views
WPF/SL - Derive from ICommand derivative or delegate to Execute/CanExecute
It seems most of the MVVM frameworks use an ICommand derivative where they just supply delegates to the Execute/CanExecute methods in the view, instead of deriving a new class and override ...
0
votes
1answer
262 views
SelectedItem changed and commands in Silverlight
I'm new in Silverlight and I have some issues regarding Commands. I have a DataGrid which is bound to ObservableCollection in my ViewModel. I also have a button
<Button Command="{Binding ...
0
votes
1answer
960 views
silverlight combobox invokecommandaction on selectionchanged event cannot pass parameter
I have a combobox, using databinding and MVVM pattern. Everytime the user changes the selection, I added an event trigger, and a command is executed. the code is the following:
<ComboBox ...
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
2answers
1k views
Silverlight Binding - CommandParameter to Parent (help remove an x:Name)
Any idea how I can bind to the listbox and not use an x:Name for the code below? I'm using the xname at ElementName=myList
<ListBox x:Name="myList" Grid.Row="1" Height="auto" ItemsSource="{Binding ...
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 ...
2
votes
1answer
195 views
SL Firing a Command from Within a ListItem Data Template, to a ViewModel for the MainPage.xaml
I may be making this more complicated than necessary ... but here goes.
I have my MainPage.xaml, in there I have references to two other UserControl's, ResultsView, and DetailsView.
Inside of the ...
1
vote
3answers
2k views
Accessing a button click for a button in a ListBox DataTemplate on a Silverlight Templated Control
I have a Silverlight Templated Control (not a user control), which contains a ListBox.
In the DataTemplate of the ListBox i have a Button, like so:
...
0
votes
1answer
299 views
Silverlight Commands MVVM
I'd like to 'reduce' the number of commands in my ViewModel class.
I have one ViewModel which contains 5+ lists (using Listboxes on View to presentate, and I'm binding an ObservableCollection to its ...
0
votes
1answer
990 views
Silverlight Access Key Shortcuts
I need to provide access key shortcut for several functions such as Save. To do this I have started by handling the KeyUp event of my root object which is a Grid called LayoutRoot (typically created ...
0
votes
1answer
36 views
How do I sublass a control along with its attached properties?
I am trying to subclass System.Windows.Controls.DataGrid in order to add special commands to which a view model can bind. How do I do this and still have the Columns attached property? Do I have to ...
3
votes
3answers
636 views
MVVM: commands vs eventhandlers
I know this has been done to death, but most answers are along the lines of "yeah, you can use eventhandlers in place of commands if you like". This still doesn't solve the problem of whether writing ...
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 ...
2
votes
3answers
2k views
MVVM Light EventToCommand doesn't work inside WP7 Pivot DataTemplate
I have very strange issue. In my WP7 app I have a pivot control and an item template defined inside it(or in the resources, I have tried both ways, but still same issue). In the template I have a ...
0
votes
0answers
582 views
PRISM-MVVM, ItemsControl problem with View injection
I need to display multiple instances of a basketDetailsView.xaml within a region placed in basketView.xaml, but I'm getting the following errormessage when i debug my code:
"An exception occurred ...
0
votes
2answers
713 views
SL ItemsControl, command on ViewModel not firing from ItemsControl (CheckBox)
I'm using PRISM v2, CAL, SL4 and MVVM and have a delegate command on my ViewModel called CheckCommand. The ItemsControl contains a checkbox and I'm trying to get the items in ItemsControl/Checkbox to ...
0
votes
1answer
365 views
Prism: Prevent executing a command in duplicate views using IActiveAware?
I have a Silverlight application that has three regions that will host the same Views. What I want to know is, how may I create a zoom control for each of the views, without zooming all of the views ...
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
vote
1answer
3k views
Command Parameter is null in a Command of CustomDataGrid
This code works fine :
<sdk:DataGrid ItemsSource="{Binding MyItems}" SelectedItem="{Binding MySelectedItem,Mode=TwoWay}" x:Name="dataGrid">
<i:Interaction.Triggers>
...
0
votes
1answer
201 views
How to implement commanding in silverlight
Simple case:
<usercontrol>
<Views:UserListView x:Name="settingsTreeView"/>
<Button DataContext="{Binding ElementName=settingsTreeView, Path=SelectedItem}"
...
0
votes
2answers
977 views
MVVM Light : RelayCommand : reuse the command or create a new instance?
When defining a RelayCommand in the ViewModel, this is normally done using once [lazy or in constructor] (see here for examples).
But is this safe ?
What if multiple RelayCommands from the same ...
3
votes
2answers
946 views
Triggering Silverlight Prism command with a keyboard shortcut
Does anybody know whether one can trigger prism command with a shortcut? What I mean is I want to be able to define binding of a command to keyboard shortcut in declarative manner, like ClientUI does:
...
0
votes
1answer
641 views
Binding Commands Without Using the DataContext [silverlight+prism]
Hello I have a problem with binding commands to button inside datagrid.
Here should be explanation but it doesn't explain everything.
http://msdn.microsoft.com/en-us/library/dd458928.aspx
What ...
2
votes
2answers
967 views
How can I extend a ComboBox to support commands (MVVM)?
As topic says, I need to extend the features of a standard Silverlight ComboBox to also support Commanding. Since I follow MVVM I need my ComboBox to communicate the SelectionChanged event to my ...
0
votes
0answers
538 views
XAML - Binding Command to ItemsControl Contents
I have a UserControl with a ICommand-derived object as a Resource as follows:
<commands:SetRegionContentCommand x:Key="SetContentComand"/>
I then try to bind the command to the DataTemplate ...
4
votes
4answers
4k views
MVVM Light is too fast :)
I have a simple WM7 Page with a TextBox. Futher, I assigned EventToCommand (a RelayCommand<string>) to this TextBox, reacting to the TextChanged event. For testing pourposes I made additional ...
1
vote
1answer
743 views
How to assign RelayCommand to Click or SelectedIndexChanges events?
I'm just starting with MVVM light, but so far it allowed me to solve some of my issues. Infortunately I'm struggling with relatively sime issues in Silverlight.
Let's assume the following button with ...
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, ...
0
votes
3answers
1k views
How should I handle multiple events per control w/command pattern using MVVM in Silverlight?
Is anyone using the SLExtensions command pattern (http://www.codeplex.com/SLExtensions) for associating commands to Silverlight control events? From what I've seen, you can only attach a command for ...
58
votes
3answers
19k views
Passing an enum value as command parameter from xaml
I want to pass an enum value as command parameter in WPF, something like this -
<Button x:Name="uxSearchButton" Command="{Binding Path=SearchMembersCommand}"
...