Custom Style for buttons

I am adding buttons to my strategy and have been using this for the button style, “Style basicButtonStyle = Application.Current.FindResource(“BasicEntryButton”) as Style;” Content = Button1String,
Name = Button1Name,
Height = 40,
Margin = new Thickness(5,0,5,0),
Padding = new Thickness(0,0,0,0),
Style = basicButtonStyle
which works fine. However, I would like to have the option to change the button font size, font type, etc. I’ve search around but couldn’t find any examples how to do this. Any help would be appreciated.

Thanks