Click here to Skip to main content
15,884,472 members
Home / Discussions / WPF
   

WPF

 
QuestionSet Backgroundcolor when CheckBox in TreeView is checked Pin
Member 963452827-Nov-12 23:43
Member 963452827-Nov-12 23:43 
QuestionWPF Grid Splitter Problem Pin
Kevin Marois27-Nov-12 16:27
professionalKevin Marois27-Nov-12 16:27 
QuestionWPF Dispatch.Invoke/BeginInvoke deadlock? Pin
devvvy26-Nov-12 19:30
devvvy26-Nov-12 19:30 
Answer[SOLN FOUND] - it is NOT that Dispatcher.Invoke buggy! Pin
devvvy29-Nov-12 14:15
devvvy29-Nov-12 14:15 
GeneralRe: [SOLN FOUND] - it is NOT that Dispatcher.Invoke buggy! Pin
Paulo Zemek23-Jan-13 6:41
mvaPaulo Zemek23-Jan-13 6:41 
QuestionChange [EnableClientAccess(RequiresSecureEndpoint = true)] based on config Pin
Adam_Dev20-Nov-12 22:34
Adam_Dev20-Nov-12 22:34 
QuestionCommand Binding Pin
Andy_L_J19-Nov-12 10:51
Andy_L_J19-Nov-12 10:51 
AnswerRe: Command Binding Pin
SledgeHammer0119-Nov-12 11:14
SledgeHammer0119-Nov-12 11:14 
Dunno if you want these kinds of comments, so feel free to ignore them if you are offended Big Grin | :-D , but your question IS answered below.

1) Bad practice to litter your code with 'this'. It's not needed as its implied.
2) Bad practice to use an interface to reference a concrete class inside of the class itself (public ICommand LoadSomeViewCommand)... its a RelayCommand, not an ICommand. You should only pass it around externally as an ICommand.
3) Your implementation of RelayCommand isn't correct. You should not need all that new Action, new Predicate garbage.
4) Your non-generic RelayCommand should not take any params. RelayCommand<T> is the one that takes a param and that one should be type safe. Don't pass in an object, pass in the real type.
5) *THE ANSWER TO YOUR QUESTION* You can't databind to a variable. Only properties.
6) If you are using UnityContainer, or any other DI container. USE IT. In your SomeView contructor, you have the unity container reference, but aren't using it to create the object.
7) Better to use an attached property to set your data context, so you get rid of all the hand wiring with a code behind.
8) Stop using var's for simple types. This isn't JavaScript Smile | :) . Vars have specific uses, this isn't one of them.
GeneralRe: Command Binding Pin
Andy_L_J19-Nov-12 11:36
Andy_L_J19-Nov-12 11:36 
GeneralRe: Command Binding Pin
Mycroft Holmes19-Nov-12 11:51
professionalMycroft Holmes19-Nov-12 11:51 
GeneralRe: Command Binding Pin
Andy_L_J19-Nov-12 12:14
Andy_L_J19-Nov-12 12:14 
GeneralRe: Command Binding Pin
Mycroft Holmes19-Nov-12 13:22
professionalMycroft Holmes19-Nov-12 13:22 
GeneralRe: Command Binding Pin
SledgeHammer0119-Nov-12 12:14
SledgeHammer0119-Nov-12 12:14 
GeneralRe: Command Binding Pin
Mycroft Holmes19-Nov-12 13:26
professionalMycroft Holmes19-Nov-12 13:26 
GeneralRe: Command Binding Pin
Wayne Gaylard20-Nov-12 3:29
professionalWayne Gaylard20-Nov-12 3:29 
GeneralRe: Command Binding Pin
SledgeHammer0120-Nov-12 6:42
SledgeHammer0120-Nov-12 6:42 
AnswerRe: Command Binding Pin
Pete O'Hanlon22-Nov-12 22:41
mvePete O'Hanlon22-Nov-12 22:41 
GeneralRe: Command Binding Pin
Andy_L_J23-Nov-12 1:48
Andy_L_J23-Nov-12 1:48 
QuestionWPF Components For WinForm Pin
alirezamansoori13-Nov-12 5:26
alirezamansoori13-Nov-12 5:26 
AnswerRe: WPF Components For WinForm Pin
Pete O'Hanlon13-Nov-12 7:56
mvePete O'Hanlon13-Nov-12 7:56 
AnswerRe: WPF Components For WinForm Pin
Abhinav S13-Nov-12 21:17
Abhinav S13-Nov-12 21:17 
GeneralRe: WPF Components For WinForm Pin
alirezamansoori14-Nov-12 20:40
alirezamansoori14-Nov-12 20:40 
QuestionCan anyone suggest any good books or tutorials on WPF-MVVM please? Pin
Vijay Kanda11-Nov-12 19:22
Vijay Kanda11-Nov-12 19:22 
AnswerRe: Can anyone suggest any good books or tutorials on WPF-MVVM please? Pin
Praveen Raghuvanshi13-Nov-12 7:22
professionalPraveen Raghuvanshi13-Nov-12 7:22 
GeneralRe: Can anyone suggest any good books or tutorials on WPF-MVVM please? Pin
Vijay Kanda13-Nov-12 21:56
Vijay Kanda13-Nov-12 21:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.