method raises the Routed event
CodeKeep C# Feed Aprile 10th, 2008
Description: method raises the Routed event
Link: http://www.codekeep.net/snippets/c9433cac-c4f9-4565-9fac-875672da87a3.aspx
// This method raises the CancelClick event
void RaiseCancelClickEvent()
{
CancelClickEventArgs newEventArgs = new CancelClickEventArgs();
RaiseEvent(newEventArgs);
}





