0
votes
1answer
22 views

VisualStateManager and MVVM

I'm working on a Windows 8 Store App (using the Grid App Template) and while I'm loading data from a server I want to show a ProgressRing and hide the GridView or ListView (depends on if the app is ...
0
votes
1answer
22 views

Role based View XAML

I am developing a WinRT app which has many user roles. The View of many pages in my app change based on the Userrole For eg. I have a Student role and a Professor role. When the Student logs in he ...
1
vote
2answers
27 views

WPF Radio Button Fires Converter in strange order

I am writing a simple program using the MVVM Model on WPF. Basicly when the user clicks a radio button in a group of radio buttons, it will update a property in the View Model with the new Account ...
1
vote
1answer
52 views

Leftmouseclick on stackpanel

I have a stackpanel with image and button in it. I want to fire event when user clicks on a button in stackPanel. My code in xaml is <StackPanel x:Uid="TemperatureMonitor" ...
0
votes
0answers
21 views

WPF - Accessing GDPicture object in a viewmodel

I am using MVVM and somehow I should have access to GDpicture object in my viewmodel. here is the XAML <WindowsFormsHost x:Name="WindowsFormsHost1" Height="991" Width="1583"> ...
0
votes
0answers
31 views

AutoCompleteBox randomly sets Text Value

I'm using an AutoCompleteBox in a DataGrid for order line items. It works great except for one thing: the text typed into the acb moves unpredictably to other rows in the DataGrid, seemingly at ...
0
votes
2answers
39 views

DataTemplate not being applied

I have a window in which I want to display dynamic content based on a datatemplate. The XAML looks roughly like this: <Window x:Class="Report.ControlLibrary.ReportHost" ...
0
votes
0answers
26 views

How to retrieve user input from Popup with MVVM in windows8

I have a GridView which contains Product items, in the itemtemplate, there's an edit button, when user click the button, popup a popup window, all of the information about this product filled in the ...
0
votes
2answers
57 views

OnPropertyChanged method is not firing

In WP8 app, i have few controls where i bind the foreground color which i am changing in the codebehind. But OnPropertyChanged is not firing when the user event happened. I have defined this binding ...
0
votes
2answers
33 views

How to a implement ListBox ScrollIntoView functionality in a ViewModel

I have a screen with a TextBox in which the user can type a 2-character state code. Below the TextBox is a ListBox containing all 50 state codes. The TextBox is bound to property in the VM, and the ...
0
votes
1answer
67 views

Navigate properly between tab in a WPF MVVM application

I'm doing a WPF application with the M-V-VM patern (i'm using galasoft if it's relevant), but I have issues when I navigate through a tabcontrol. I'm adding tabs on the run. All the binding seems to ...
4
votes
3answers
90 views

How to Bind to window's close button the X-button

How I can bind one of my buttons on control to X Button that closes the window ? I just want to create cancel button that just closes the window. I am using MVVM in my code. If possible to do it only ...
0
votes
1answer
61 views

MVVM: Convert code-behind to XAML

I've got an AllTopicsViewModel and its got a property ExerciseVM which is an AllExerciseViewModel, since I want to be able to refresh the AllExerciseViewModel of an ExerciseView so I am doing it like ...
0
votes
3answers
49 views

Show alternating images for changing ViewModel states

For different user interfaces I want to show an image depending on a state of a ViewModel object. For example: I have a database connection, if connected, I want to show a green database image, if ...
0
votes
0answers
33 views

Updating DataTemplate on LoadingRowDetails Event using MVVM

I have a Grid which has a childGrid inside DataTemplate: <RadGridView Grid.Row="0" x:Name="parentRadGrid" LoadingRowDetails="parentRadGrid_LoadingRowDetails"> ...
0
votes
2answers
27 views

Update bound property in ItemsControl

Quick description of my setup: Disclaimer: The code is only to show what I want to do. The command binding for instance is done with event triggers etc. I'm pretty sure this wouldn't even build, but ...
0
votes
1answer
38 views

WPF MVVM - Activate ViewModel-command by use of hot keys from MainWindow

I have an MVVM application in which the MainWindow contains a grid with several views. In one of the viewmodels there is a command which I can activate by using hot keys in its corresponding view. I ...
0
votes
1answer
43 views

Context Menu commands to dynamically create UI controls using MVVM

Hopefully this question isn't too general, but I have just started using WPF and I'm banging my head against this. I am developing an application that uses dynamically created controls. However ...
3
votes
2answers
93 views

Preferred method for binding in MVVM, Data Template in Resources file or just DataContext in View itself?

This one has got me stumped as I THOUGHT I looked at everything but I must be missing something. I have went off the traditional MVVM pattern from the MSDN magazine: ...
1
vote
2answers
65 views

MVVM pattern - executing view operations

I'm using MVVM Pattern (with MVVM Light) to build my XAML app (win8). I have a ListView, which is bound to a property of my ViewModel. I also have a button that triggers an operation on that ...
1
vote
2answers
81 views

Conditionally auto-click button in MVVM using xaml

I am writing an application based on MVVM architecture. The application has a Wizard like workflow. In couple of pages (views) in my application, I need a button to be auto-clicked when a certain ...
0
votes
1answer
50 views

Silverlight: Load and bind Xaml dynamically

I have a child window which loads xaml dynamically and now I want to do some bindings in order to communicate messages between the child window and the parent. Because the project is plugin-based and ...
1
vote
1answer
41 views

Proper way to assign and work with WPF DataContext in Resources

My application needs to open a UserControl that needs to have a parameter/property to contain a year. For this year i will have my control show some edit values. I'm running into the problem that my ...
5
votes
3answers
96 views

Sorting a listbox when a button gets clicked using MVVM

I've been looking for a solution for my problem since yesterday. Im building a problem with MVVM pattern. I got two usercontrol, which are both containing a listbox. The first usercontrol is called ...
-1
votes
0answers
189 views

Imitating windows 8 live tiles [closed]

Okay I know there are tons of posts about win 8 live tiles but none of them help at all. I have made tile controls with animations but none of them look the way I want. I have looked at other ways to ...
1
vote
2answers
42 views

Associating View and ViewModel pairs in XAML without repetitive code

I have read a very nice tutorial about letting ViewModels do their stuff while the views just switch themselves via databinding with DataTemplates. I succesfully made a window which has an ...
0
votes
1answer
57 views

Binding RichTextBox.Document and TextBlock.Inlines (not dependency properties)

I've got a RichTextBox and a TextBlock that are nested in a DataTemplate. I'm trying to bind them to a dynamic content, which includes hyperlinks and images (so I can't use the Text property). How ...
0
votes
1answer
118 views

WPF, MVVM, and event handling for nested UserControls

I have a WPF application and I'm trying to implement MVVM. The main window has a viewmodel and a custom user control. This user control contains a textbox and a button and shares the datacontext from ...
3
votes
4answers
175 views

Getting CRAZY with ComboBox SelectedItem

I have a data bound ComboBox that looks like this: <ComboBox Canvas.Left="5" Canvas.Top="5" IsEnabled="{Binding Path=ComboBoxEnabled}" ItemsSource="{Binding Path=Items}" SelectedItem="{Binding ...
4
votes
3answers
270 views

Interaction Trigger before selectionChanged of ListPicker in Windows Phone 8

I have a issue when trigger comes in ViewModel the SelectedItem(parameter) comes the previously selected Item. I need the newly selected item as parameter on selectionChanged. I am new in WP8. Below ...
0
votes
1answer
69 views

MVVM - Binding Expression errors when createing a View in XAML with a ViewModel DataTemplate

This is a WPF application. Background: I essentially have a Wizard application. The Wizard is initialized by providing a list of ViewModels. These ViewModels will create the appropriate view based ...
3
votes
1answer
57 views

Pass Enum value as CommandParameter when the Enum is in the ViewModel

I am still learning WPF Binding and have been struggling with this for a while. I have an enum store inside the ViewModel like so: namespace theNamespace { public class frmSetupViewModel { ...
0
votes
1answer
54 views

XamDateTimeEditor - user should select the date from the dropdown calender only — WPF/MVVM

I have XamDateTimeEditor control in the XAML(code given below). Currently the user is able to type in the date or select from the calender dropdown. But I don't want the XamDateTimeEditor to allow any ...
1
vote
1answer
41 views

SL5 best option for a Win8 & WP8 development shop forced to develop a Win7 app?

We are a Win8 & WP8 (new) development shop that must develop a one-of internal use only LOB app that runs on Win7 (preferably out of browser). Since most of our client-side app knowledge is with ...
1
vote
2answers
114 views

How to clear a TextBox in MVVM?

I have a TextBox in a DataTemplate declared as follows: <TextBox Grid.Row="1" Grid.Column="1" Margin="0,4,0,0"> <i:Interaction.Triggers> <i:EventTrigger EventName="LostFocus"> ...
1
vote
1answer
51 views

Change style based on data

Consider below XAML => <fluent:Ribbon x:Name="MenuRibbon" Title="title" SnapsToDevicePixels="True"> <fluent:RibbonTabItem ...
1
vote
1answer
66 views

How to make an element reference a StaticResource Storyboard in XAML (instead of the storyboard referencing the element)

I am reading the MSDN Animation tutorial, and it describes the following steps to apply a storyboard to an element: Create the Storyboard; Specify its target element name with the TargetName ...
0
votes
1answer
130 views

WPF - Restore Previous SelectedItem when ComboBox ItemSource Changes

I'm implementing a ComboBox that can be refreshed by users using a button. I'm trying to make it so that the previously selected item is automatically reselected if still present inside the ComboBox ...
0
votes
2answers
98 views

ComboBox Binding to Custom ViewModel

I am working on a WPF project. This is my XAML code: <Window x:Class="MyNamespace.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
2
votes
1answer
79 views

Commanding with Static Items of Listbox using MVVM

I have a list box in my view with three static items(Name,Age,Gender), and I want my ViewModel to do something when an item in the ListBox is selected. I want to do this without any code-behind, using ...
0
votes
2answers
63 views

Bind Tree view to object and not to List<object>

This is maybe a very simple question, still I don't know how to solve this. I have a model in my MVVM application which I want to bind to a tree view. However I can only bind the tree view to a list ...
1
vote
1answer
42 views

How to link the View and the ViewModel and where to create them

I have written a phone app using an MVVM framework. It came together okay - every page (view) on the phone has its own ViewModel and code within each ViewModel went away to the dataservice and ...
0
votes
1answer
28 views

Where to put the commands into Undo/redo stack when executing command in XAML?

I am using the command pattern, and an undo action for each command. My View is bound to the commands via the viewmodel. ExampleCode: XAML: <Button Command="{Binding MyCommand}"> ...
1
vote
2answers
71 views

ObservableCollection along with a repository

I am having trouble with grasping the concept of a ObservableCollection inside MVVM. For start I would like to point out that I am doing this in a Windows 8/Metro App, not WPF or Silverlight. ...
-1
votes
1answer
121 views

Which executes first Code Behind or View Model

Based on my previous question Accessing variables from XAML and object from ViewModel using Code Behind: How would I know which executes first? Is it the code behind or the ViewModel? I just want ...
0
votes
1answer
65 views

MVVM Light, Metro App, Inheriting ViewModelBase breaks design mode

I'm having a strange issue, and I can't seem to find any answers on. I'm building a Metro Store App with Visual Studio 2012 using MVVM Light through NuGet. When designing and adding the data context ...
1
vote
3answers
75 views

Binding a viewmodel's property to another's

I have a main window coupled with a view model.This main window uses a usercontrol which also has its own viewmodel. What I would like to achieve is setting a binding in the main window's xaml ...
0
votes
1answer
76 views

WPF How to access a control from ViewModel

In new to windows phone development. Can someone help me to learn how can I access a certain control on ViewModel. Example Scenario: I have a listbox and I want to access the listbox from my View ...
0
votes
3answers
99 views

How WPF framework handle cyclic update of properties in MVVM?

Lets assume property Name is bind to TextBox in view like this. private string name public string Name { get {return name;} set { name=value; OnPropertyChanged("Name"); } } ...
0
votes
0answers
48 views

wpf slider drag -raising property updates frequenlty

i have a item template with datacontext=viewmodel Xaml part <slider value="{binding currentvalue"} /> <textbox value="{binding currentvalue"} /> the objective is to allow ...

1 2 3 4 5 14