0

Listboxユーザーが選択したいアイテムのラバーバンドまたは投げ縄タイプの選択を許可しようとしています。私Listboxはグリッド内にいて、グリッドに、選択したい領域に長方形を描画するコントロールを追加しました。Listboxアイテムが長方形の中にあるかどうかを確認するためにヒットテストを試みましたが、すべてがそうではないことを返しているようです。これらのアイテムを見るとVisualTreeHelper.GetDescendantBounds(長方形でX、Yを取得する場合と同様に)、アイテムごとに常にX、Yが0,0として返されます。ヒットテストで何が間違っているのですか?

4

1 に答える 1

0

このコードを使用して、別のUIElementを基準にしたUIElementの位置と境界を取得できます。コードはこの投稿から取得されます。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

public static class UIHelper
{
    public static Boolean GetUIElementCornersRelativTo(UIElement Base,
                                                UIElement RelativeTo,
                                                ref Point TopLeft,
                                                ref Point BottomLeft,
                                                ref Point BottomRight,
                                                ref Point TopRight,
                                                ref String Message)
    {
        try
        {
            if (Base == null)
            {
                throw new Exception("Base UIElement is null");
            }
            if (RelativeTo == null)
            {
                throw new Exception("RelativTo UIElement is null");
            }

            TopLeft = Base.TranslatePoint(new Point(0, 0), RelativeTo);
            BottomLeft = Base.TranslatePoint(new Point(0, Base.RenderSize.Height), RelativeTo);
            BottomRight = Base.TranslatePoint(new Point(Base.RenderSize.Width, Base.RenderSize.Height), RelativeTo);
            TopRight = Base.TranslatePoint(new Point(Base.RenderSize.Width, 0), RelativeTo);

            Message = "OK";
            return true;
        }
        catch (Exception ex)
        {
            Message = ex.Message;
            return false;
        }
    }
    public static Boolean GetPointRelativTo(UIElement Base,
                                     UIElement RelativeTo,
                                     Point ToProjectPoint,
                                     ref Point Result,
                                     ref String Message)
    {
        try
        {
            if (Base == null)
            {
                throw new Exception("Base UIElement is null");
            }
            if (RelativeTo == null)
            {
                throw new Exception("RelativTo UIElement is null");
            }

            if (ToProjectPoint == null)
            {
                throw new Exception("To project point is null");
            }

            Result = Base.TranslatePoint(ToProjectPoint, RelativeTo);

            Message = "OK";
            return true;
        }
        catch (Exception ex)
        {
            Message = ex.Message;
            return false;
        }
    }
}
于 2009-09-17T13:32:09.323 に答える