New Post: EventToCommand built with older version of Blend SDK error
i am also facing the same issue. I have added 'Galasoft.MvvmLight.Extras.WPF4' version 4.1.27.22784 to my project. But i am still not able to get the EventToCommand in intellisence. My project is using...
View ArticleNew Post: FUCKING EVENTTOCOMMAND DOESN T WOR
Hello Mr. Bugnion, I am using MVVM Light toolkit with WPF4.5. I am facing the same issue reported by Yield. I removed assemblies from my project and added those from zip you suggested, still VS2012 not...
View ArticleNew Post: Master details page with MVVM Light
Hi, I want to create a master details in WPF45 page using MVVM light can you please suggest me some article or sample or example which I can referrer. I want to understand how to notify parent when...
View ArticleNew Post: How to Bind String Value to TextBox?
Hi I want to bind a string value to a textbox that I can grab out of the object when I click on my button(save) I have this public class Product {public string Name {get; set;} public decimal Price...
View ArticleNew Post: INotifyDataErrorInfo with MVVM Light
Hi, Is there anyone who has implemented validation using INotifyDataErrorInfo with MVVM Light? Please suggest some articles or blog on implementing INotifyDataErrorInfo with MVVM Light. Thanks.
View ArticleNew Post: FUCKING EVENTTOCOMMAND DOESN T WOR
Hi Laurent, In-case you want the code, please let me know How can I send it to you? Thanks
View ArticleNew Post: How to Bind String Value to TextBox?
Is your Product class a ViewModel? If so, it should derive from ViewModelBase. Then, your Name setter should look something like: set { if (Name == value) { return; } Name = value;...
View ArticleNew Post: How to Bind String Value to TextBox?
ccbVT wrote: Is your Product class a ViewModel? If so, it should derive from ViewModelBase. Then, your Name setter should look something like: set { if (Name == value) { return; } Name = value;...
View ArticleNew Post: How to use AutoCompleteBox with MVVM Light?
Hi I am trying to figure out how the best way to use AutoCompleteBox with MVVM Light. public ICommand AutoComplete { get { return new RelayCommand<KeyEventArgs>(e => { var txtBox =...
View ArticleNew Post: How to use AutoCompleteBox with MVVM Light?
Hi, I would recommend to ask on StackOverflow, with the mvvm-light tag. There is a lot more traffic there and you will increase your chances to find someone having actually done this before :) Cheers...
View ArticleNew Post: How to use AutoCompleteBox with MVVM Light?
lbugnion wrote: Hi, I would recommend to ask on StackOverflow, with the mvvm-light tag. There is a lot more traffic there and you will increase your chances to find someone having actually done this...
View ArticleNew Post: How to use AutoCompleteBox with MVVM Light?
Interesting! Thanks for the note :) Laurent
View ArticleNew Post: EventToCommand clarifications
Hi, I'm bit new to WPF and MVVM. I'm trying to develop some kind of re-usable view-models to be used by others. Its like; I'm creating a public interface for a particular view-model and provide its...
View ArticleNew Post: Installer for 4.1.27
Is there going to be an installer for 4.1.27? Also, are there any plans for future releases (V5)?
View ArticleNew Post: MVVM Light in a Windows Store App + Portable Class Library...
Hello Laurent, i am developing win8 store app using mvvm light, i give references to GalaSoft assemblies in both View ( ProjectType- win8 app)and ViewModel (PCL) projects. When i build my app it give...
View ArticleNew Post: MVVM Light in a Windows Store App + Portable Class Library...
Hi, You need to add a reference to the PCL MVVM Light assembly within your app too. Cheers Laurent
View ArticleCreated Unassigned: EventToCommand xaml error, "A value of type...
I'm trying to implement EventToCommand within one of my views, but when I add the code (below), then I get a parser error:"A value of type 'EventToCommand' cannot be added to a collection or dictionary...
View ArticleCreated Unassigned: MVVM Light Toolkit V4 RTM - Missing Shapes in Blend...
HiI made a MVVM light 7.1 project in VS 2010, I then opened it up in Blend 4. I only see 2 shapes. If I make a non MVVM light project I see about 16 shapes.Why am I missing these shapes?
View ArticleNew Post: EventToCommand xaml error, "A value of type 'EventToCommand' cannot...
Hi. I'm trying to implement EventToCommand within one of my views, but when I add the code (below), then I get a parser error: "A value of type 'EventToCommand' cannot be added to a collection or...
View ArticleNew Post: MVVM Light in a Windows Store App + Portable Class Library...
Hi, Thanks for a quick reply, i did what you say but now i am getting Error2 Cannot resolve Assembly or Windows Metadata file 'GalaSoft.MvvmLight.Win8.dll' Error 3 Type universe cannot resolve...
View Article