Skip to content

Instantly share code, notes, and snippets.

@jorwan
Last active June 28, 2019 20:18
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 jorwan/5d01386eef0ec2deb5b8c0ffb08d8855 to your computer and use it in GitHub Desktop.
Save jorwan/5d01386eef0ec2deb5b8c0ffb08d8855 to your computer and use it in GitHub Desktop.
Xamarin Mac Apps Notes

Setting window bar title background color

  // Set window bar title background to transparent
  base.Window.TitlebarAppearsTransparent = true;

  // Set window background color to 5A5C5C
  base.Window.BackgroundColor = NSColor.FromRgb(88 / 255f, 86 / 255f, 86 / 255f);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment