To set default values ββfor wpf controls (for example, you want all your text fields to be 30 pixels wide by 10 pixels high in 5 pixel increments), you can define styles.
If you look at the sample presented here, you will see how the TextBlock style is defined by default and applies to all text blocks. http://msdn.microsoft.com/en-us/library/ms745683.aspx
<Style TargetType="TextBlock"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="FontFamily" Value="Comic Sans MS"/> <Setter Property="FontSize" Value="14"/> </Style>
If you want more designer experience, I would recommend using Blend instead of Visual Studio Designer.
source share