Currently, I am using the following code repeated throughout my application since apparently you aren't supposed to subclass UINavigationController (correct me if I am wrong):
var galleryNavigation = new UINavigationController(galleryDialog);
galleryNavigation.NavigationBar.TintColor = UIColor.FromRGB (33, 114, 131);
galleryNavigation.NavigationBar.Alpha = 0.7f;
galleryNavigation.NavigationBar.Translucent = true;
I want to define these styles (TintColor, Alpha, etc.) once and reuse them. How can I achieve this?