I\'m building a WPF application in which I have a need to get the width, height and locations of the window from my view model. I\'m using the following XAML:
I\'m new to MVVM.Currently I\'m developing a WPF project in C# that will have a SQl Server backend and I\'ll be using a standard WCF service to communicate with it.All the tutorials I\'ve seen on MVVM
Can we have a viewMo开发者_高级运维del for App.Xaml so that we can do some logical deductions on startUp and also form a starting point of app...No, App.xaml is not a Window class, it is your Applicat
I have successfully used a few custom commands using MVVM-开发者_JAVA百科Light, but I want my application to respond to the standard ApplicationCommands, not just at a Window level, but at a detailed
I\'m working with the WPF TabControlEx (close tab开发者_运维技巧s). I\'m looking a way to close all the tabs with a ContextMenu in tabs.
Ok, so I have a DataGrid (the standard WPF DataGrid, which comes with .Net 4.0, NOT the WPF Toolkit DataGrid) with the CanUserAddRows=false.It\'s bound to an ObservableCollection in the ViewModel.It h
I\'m working on a simple financial application using MVVM & LinqToSql. I\'m trying to find out the best way to structure my data. Here\'s what I have (simplified):
public class Navigator : PhoneApplicationPage { private static Navigator _instance; private static object _lock = new object();
On my MVVM silverlight application I have a dataDrid (in the View) and the dataGrid ItemsSource is binding to a Domain Service Classes Sql stored procedure \'results\' in the XAML file.The stored proc
Iam writing an app that shows a list of the remaining time a user has on a course. I want the list to dynamically update every second so the user has the full overview.