如何搜索 Pivot 控件的 ItemCollection
我正在传递标题的字符串,我希望页面上的枢轴控件移动到像这样的
switch (SelectedItemHeaderString){
case "News":
MainPivot.SelectedItem = MainPivot.Items.Where(i => i.Header == "News");
break;
default:
break;
}
How do I find the PivotItem by Header,因为以下内容不起作用。
MainPivot.Items.Where(i => i.Header == "News");
I'm passing the string of a header I want the pivot control on my page to move to like this
switch (SelectedItemHeaderString){
case "News":
MainPivot.SelectedItem = MainPivot.Items.Where(i => i.Header == "News");
break;
default:
break;
}
How do I find the PivotItem by Header because the following doesn't work.
MainPivot.Items.Where(i => i.Header == "News");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
一些评论:
Items
包含对象,我们需要转换为PivotItem
。Try this:
Some comments:
Items
contains objects and we need to cast toPivotItem
.希望这能帮助我的评论无法正常工作。 :)
Hope this will help my comment wasn't working correctly. :)