Я пытаюсь изменить цвет контроллера панели навигации, а также контроллера панели вкладок
Я использую monotouch.dialog для создания приложения и имею следующий код
public partial class AppDelegate : UIApplicationDelegate
{
// class-level declarations
UIWindow window;
//
// This method is invoked when the application has loaded and is ready to run. In this
// method you should instantiate the window, load the UI into it and then make the window
// visible.
//
// You have 17 seconds to return from this method, or iOS will terminate your application.
//
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
// create a new window instance based on the screen size
window = new UIWindow (UIScreen.MainScreen.Bounds);
// If you have defined a view, add it here:
// window.AddSubview (navigationController.View);
CreateTabs();
// make the window visible
window.MakeKeyAndVisible ();
return true;
}
protected void CreateTabs()
{
window = new UIWindow (UIScreen.MainScreen.Bounds);
var nav = new UITabBarController ();
nav.ViewControllers = new UIViewController [] {
new HomeController("Home"),
new WhereToUseController(),
new TransactionsController(),
new SettingsController()
};
// nav.TabBarController.TabBar.BackgroundColor = UIColor.Green;
nav.CustomizableViewControllers = new UIViewController [0];
window.RootViewController = nav;
// window.BackgroundColor = UIColor.Orange;
window.MakeKeyAndVisible ();
}
Пример одного из моих контроллеров
public override void LoadView ()
{
base.LoadView ();
//TableView.BackgroundColor = UIColor.Clear;
// ParentViewController.View.BackgroundColor = UIColor.Red;
}
public HomeController (string s)
{
TabBarItem = new UITabBarItem (s, null, 1);
var root = new RootElement (s) {
new Section () {
new UIViewElement("My Caption:", view, false),
new StyledStringElement("Hello","somevalue"),
new StringElement ("Welcome back Shane"),
new ImageElement(new UIImage("Images/QR.png")),
}
};
PushViewController (new DialogViewController (root), false);
}
Где я должен был изменить цвет?разрешить мне менять верх и низ?