wp7 检查枢轴控件中现有的枢轴项
我想在数据透视控件内动态创建一个数据透视项,但在执行此操作之前,我想检查具有相同名称值的数据透视项是否已不存在。有办法做到吗? 如果它尚不存在,我将按如下方式创建枢轴项并将其设为选定项。
p = new PivotItem();
p.Name = name;
p.Header = name;
pivot.Items.Add(p);
pivot.SelectedItem = p;
我看到枢轴控件的 Items.Contains(object) 方法,但我不确定如何传递可能已存在或可能不存在的对象。有没有办法只检查 Items 集合是否有具有特定名称的枢轴项?
I want to dynamically create a pivotitem inside a pivot control, but before I do that, I want to check if a pivotitem with the same name value doesn't exist already. Is there a way to do it?
If it doesn't exist already, I would create the pivotitem as follows and make it the selecteditem.
p = new PivotItem();
p.Name = name;
p.Header = name;
pivot.Items.Add(p);
pivot.SelectedItem = p;
I see the pivot control's Items.Contains(object) method, but I am not sure how I would pass the object which may or may not exist already. Is there a way to just check if the Items collection has a pivotitem with a particular name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 LINQ 查询
Items
集合:You could use LINQ to query the
Items
collection: