Here is the offending code and after much nashing of teeth I discovered this little bit is the error but I do not understand why.
private void btn_Click(object sender, RoutedEventArgs rea)
{
if(MouseClick) // this is a bool
MakeVisible();
[COLOR=#c0392b] [B] //else
//return;[/B][/COLOR]
}
Why would return cause the error?
Any explanations welcomed.

Comment