|
-
May 19th, 2010 02:43 AM
#1
CommandConverter
Hi there,
I have a wpf application that contains a class (say ClassA) is implementing ICommand.
Public GenericCommand:ICommand
{
......
}
In the other class, I have the follow code:
public void doSomething()
{
}
private ICommand _commandA;
public ICommand CommandA
{
get
{
return _commandA = new GenericCommand(doSomething);
}
}
everytime the above get property method is called, I'm getting the following error:
CommandConverter is unable to convert 'GenericCommand' to "System.String"
can anyone please help?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Click Here to Expand Forum to Full Width
|
Bookmarks