如何获取 ScatterView 中最顶层的 ScatterViewItem?

发布于 2024-10-16 03:18:15 字数 46 浏览 4 评论 0原文

如何获取 ScatterView 中最顶层的 ScatterViewItem?

How do I get the topmost ScatterViewItem in a ScatterView?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

雨落星ぅ辰 2024-10-23 03:18:15

你需要这样的东西:

scatterView.Items.OrderBy( s => Canvas.GetZIndex(s) ).First()

You need something like this:

scatterView.Items.OrderBy( s => Canvas.GetZIndex(s) ).First()

岁月如刀 2024-10-23 03:18:15

您可以浏览每个 ScatterViewitem 并检查设置了哪个 ScatterViewItem.IsActive。这将是当时最顶层的时间

,它将是 ScatterView.Items 上的一个循环,以迭代 ScatterViewItems

You can go through each of the ScatterViewitem and keep check of which ScatterViewItem.IsActive is set. that will be the topmost at that moment

For of the times it will be a loop on ScatterView.Items to iterate on ScatterViewItems

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文