Skip to content

Instantly share code, notes, and snippets.

@ytabuchi
Created July 25, 2015 05:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ytabuchi/ced02dcce326a9e36586 to your computer and use it in GitHub Desktop.
Save ytabuchi/ced02dcce326a9e36586 to your computer and use it in GitHub Desktop.
ContentPage 用のスタイルです。
Application.Current.Resources = new ResourceDictionary();
var cpStyle = new Style(typeof(ContentPage))
{
Setters =
{
new Setter{ Property = ContentPage.BackgroundColorProperty, Value = Color.FromHex("333399") },
}
};
Application.Current.Resources.Add(cpStyle);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment