I compile with no problem... The trace files and the log window are not showing anything wrong but when I am trying to change the default value for properties -- it doesn't show !!!
Example :
public bool showText=true;
public bool ShowText
{
get { return showText; }
set { showText = value; }
}

Comment