The default FieldModifier value in WPF when using XAML is "internal", unless explicitly stated, e.g.
<Button x:FieldModifier="private" Name="BackButton" Content="Hello stackoverflow"/>
Is there any way to change this default, so that it is no longer necessary to define x:FieldModifier for every single element?