Monotouch.Dialog:如何在子视图中显示搜索栏?

时间:2013-02-08 11:23:53

标签: xamarin.ios searchbar

通过设置

可以很容易地在MTD中显示搜索栏
dvc.EnableSearch=true;

但问题是,当我点击dvc中的任何RootElement进入子视图时,就不再有搜索栏了。

我错过了什么吗?

更新:代码示例

    dvc = new DialogViewController (new RootElement ("test"), false) {
        Autorotate = false
    };
    dvc.EnableSearch=true;

    var menu = new RootElement ("Project Detail"){

        new Section ("Identity"){
            eeName,
            eeProjectNumber,
            reCurrencyBase,
        },

        new Section("Settings"){
            //**in this sub level(the new viewController) there is no serachbar**
            new RootElement("Floorplan"){
                new Section(){
                    beFpvShowMake,
                    beFpvShowModel,
                    beFpvShowSN,

                },
            },
        },
    };
dvc.Root = menu;

0 个答案:

没有答案