wp7 检查枢轴控件中现有的枢轴项

发布于 2024-10-23 13:47:07 字数 322 浏览 0 评论 0原文

我想在数据透视控件内动态创建一个数据透视项,但在执行此操作之前,我想检查具有相同名称值的数据透视项是否已不存在。有办法做到吗? 如果它尚不存在,我将按如下方式创建枢轴项并将其设为选定项。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

他不在意 2024-10-30 13:47:07

您可以使用 LINQ 查询 Items 集合:

bool contains = pivot
    .Items
    .Cast<PivotItem>()
    .Any((i) => i.Name == name);
if (!contains)
{
    // Add new PivotItem.
}

You could use LINQ to query the Items collection:

bool contains = pivot
    .Items
    .Cast<PivotItem>()
    .Any((i) => i.Name == name);
if (!contains)
{
    // Add new PivotItem.
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文