Guest User

Untitled

a guest
Nov 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. App cur = (App)Application.Current;
  2. Style grayStyle = new Style(typeof(Button));
  3. grayStyle.Setters.Add(new Setter(Button.BackgroundProperty, Brushes.Gray));
  4. ....
  5. Application.Current.Resources.Add(typeof(Button), grayStyle);
Add Comment
Please, Sign In to add comment