C# 更换Tabbar控制器&;使用MonoTouch.Dialog时的NavigationController

C# 更换Tabbar控制器&;使用MonoTouch.Dialog时的NavigationController,c#,ios,xamarin.ios,monodevelop,monotouch.dialog,C#,Ios,Xamarin.ios,Monodevelop,Monotouch.dialog,我正在尝试更改导航栏控制器和选项卡栏控制器的颜色 我正在使用monotouch.dialog构建我的应用程序,并具有以下代码 public partial class AppDelegate : UIApplicationDelegate { // class-level declarations UIWindow window; // // This method is invoked when the application has loaded a

我正在尝试更改导航栏控制器和选项卡栏控制器的颜色

我正在使用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);
    }
我应该在哪里换颜色?要允许我更改顶部和底部?

如果您的目标是iOS 5(以及更新版本),那么您应该查看新的
ui外观
功能。它将允许您为应用程序设置所有类型控件的外观(一次,而不是为您创建的每个控件)

打电话给这个

 UINavigationBar.Appearance.TintColor = UIColor.Black;
 UITabBar.Appearance.TintColor = UIColor.Green;
从您的
FinishedLaunching
将使所有导航栏具有黑色背景,即使是来自MonoTouch.Dialog(而不是默认的蓝色)和选项卡栏的导航栏也具有绿色背景(而不是黑色)

注意1:在iOS5之前,您需要为每个控件设置
*Color
属性(这不太有趣,因为您并不总能访问它们)

注意2:您两次创建了
UIWindow的新实例,即在
FinishedLaunching
CreateTabs

  window = new UIWindow (UIScreen.MainScreen.Bounds);