Click here to Skip to main content
15,891,567 members
Home / Discussions / WPF
   

WPF

 
GeneralWPF Command Binding Problem Pin
Kevin Marois25-Jul-12 6:35
professionalKevin Marois25-Jul-12 6:35 
GeneralRe: WPF Command Binding Problem Pin
SledgeHammer0125-Jul-12 11:56
SledgeHammer0125-Jul-12 11:56 
GeneralRe: WPF Command Binding Problem Pin
Martijn Kok25-Jul-12 12:25
Martijn Kok25-Jul-12 12:25 
GeneralRe: WPF Command Binding Problem Pin
SledgeHammer0125-Jul-12 13:44
SledgeHammer0125-Jul-12 13:44 
GeneralRe: WPF Command Binding Problem Pin
Martijn Kok25-Jul-12 19:22
Martijn Kok25-Jul-12 19:22 
GeneralRe: WPF Command Binding Problem Pin
SledgeHammer0126-Jul-12 7:35
SledgeHammer0126-Jul-12 7:35 
GeneralRe: WPF Command Binding Problem Pin
Pete O'Hanlon25-Jul-12 21:45
mvePete O'Hanlon25-Jul-12 21:45 
GeneralRe: WPF Command Binding Problem Pin
SledgeHammer0126-Jul-12 7:21
SledgeHammer0126-Jul-12 7:21 
Funny Smile | :) . I have used the standard RelayCommand and RelayCommand<T> implementations which don't raise the event and all my UI's work just fine Smile | :) . The standard implementation overrides the subscription as such:

C#
public event EventHandler CanExecuteChanged
{
	add
	{
		CommandManager.RequerySuggested += value;
	}

	remove
	{
		CommandManager.RequerySuggested -= value;
	}
}


but it does nothing to raise the event itself.

In fact, if you look at the .Net source... the only object that is even using the CanExecuteChanged event appears to be ButtonBase and MenuItem.
GeneralRe: WPF Command Binding Problem Pin
Martijn Kok27-Jul-12 1:00
Martijn Kok27-Jul-12 1:00 
GeneralRe: WPF Command Binding Problem Pin
SledgeHammer0127-Jul-12 6:34
SledgeHammer0127-Jul-12 6:34 
GeneralRe: WPF Command Binding Problem Pin
Martijn Kok29-Jul-12 10:03
Martijn Kok29-Jul-12 10:03 
GeneralRe: WPF Command Binding Problem Pin
Pete O'Hanlon1-Aug-12 0:52
mvePete O'Hanlon1-Aug-12 0:52 
GeneralRe: WPF Command Binding Problem Pin
SledgeHammer011-Aug-12 13:20
SledgeHammer011-Aug-12 13:20 
GeneralRe: WPF Command Binding Problem Pin
Pete O'Hanlon2-Aug-12 6:38
mvePete O'Hanlon2-Aug-12 6:38 
GeneralRe: WPF Command Binding Problem Pin
Pete O'Hanlon25-Jul-12 21:46
mvePete O'Hanlon25-Jul-12 21:46 
GeneralRe: WPF Command Binding Problem [UPDATE] Pin
Kevin Marois31-Jul-12 10:55
professionalKevin Marois31-Jul-12 10:55 
GeneralRe: WPF Command Binding Problem Pin
vinodkrebc26-Jul-12 8:40
vinodkrebc26-Jul-12 8:40 
QuestionInflating color value Pin
Prasoon Chaudhary25-Jul-12 1:59
Prasoon Chaudhary25-Jul-12 1:59 
AnswerRe: Inflating color value Pin
Tony Richards25-Jul-12 2:54
Tony Richards25-Jul-12 2:54 
GeneralRe: Inflating color value Pin
Prasoon Chaudhary25-Jul-12 23:21
Prasoon Chaudhary25-Jul-12 23:21 
AnswerRe: Inflating color value Pin
Christian Amado2-Aug-12 9:19
professionalChristian Amado2-Aug-12 9:19 
GeneralReg: Sending multiple objects from WCF service to silverlight Pin
Durga Charan Krishna Moorthy24-Jul-12 21:00
professionalDurga Charan Krishna Moorthy24-Jul-12 21:00 
GeneralRe: Reg: Sending multiple objects from WCF service to silverlight Pin
Abhinav S24-Jul-12 21:52
Abhinav S24-Jul-12 21:52 
QuestionAuthentication on DomainService Pin
Christian Amado24-Jul-12 11:31
professionalChristian Amado24-Jul-12 11:31 
Questiongetting color value of pixel from outside of WPF Mainwindow Pin
Prasoon Chaudhary24-Jul-12 1:24
Prasoon Chaudhary24-Jul-12 1:24 

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.