通过设置
可以很容易地在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;