When I apply x: FieldModifier to my WPF control, for example:
<TextBox x:Name="textBox1" x:FieldModifier="Public"/>
visual studio (in 2008 and 2010) raises the following error:
x: FieldModifier is not valid for C # language
How can I solve this problem?
Edit: Sorry, I want to make it public ...
source
share