如何获取 ScatterView 中最顶层的 ScatterViewItem?
如何获取 ScatterView 中最顶层的 ScatterViewItem?
How do I get the topmost ScatterViewItem in a ScatterView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要这样的东西:
scatterView.Items.OrderBy( s => Canvas.GetZIndex(s) ).First()
You need something like this:
scatterView.Items.OrderBy( s => Canvas.GetZIndex(s) ).First()
您可以浏览每个 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