LoginSignup
dhq_boiler
@dhq_boiler

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

UIElement.InputHitTest()がnullを返してしまう

解決したいこと

2022-01-14.png

この画面で青い背景の領域(テキストボックスを含む)と赤いEllipseが重なるかどうかを検出したいです。

もし重なっていたら、青い背景の領域を赤い点線枠の上辺に追いやりたいです。重なっていなければそのままでいいです。

上記の例の画像の場合、青い背景の領域と赤いEllipseが重なっているので、青い背景の領域を赤い点線枠の上辺に追いやります。

発生している問題・エラー

コード上でInputHitTest()を実行していますが、必ずnullを返します。プロパティウィンドウをリサイズして、青い背景の領域と赤いEllipseを移動してみても必ずnullを返します。これは何故なのでしょうか?どうしたら重なったオブジェクトを取得できるようになるでしょうか。

DetailPie.cs
using boilersGraphics.Controls;
using boilersGraphics.Extensions;
using boilersGraphics.ViewModels;
using Reactive.Bindings;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Media;
using System.Windows.Shapes;
using static boilersGraphics.Views.DetailPathGeometry;

namespace boilersGraphics.Views
{
    public class DetailPie : UserControl
    {
        private DetailPathGeometry _detailPathGeometry;
        private Ellipse _centerPoint;
        private DockPanel _dockPanel;
        public DetailPie()
        {
            Name = "DetailPie";
            Loaded += DetailPie_Loaded;
            LayoutUpdated += DetailPie_LayoutUpdated;
        }

        private void DetailPie_Loaded(object sender, RoutedEventArgs e)
        {
            _dockPanel = new DockPanel();
            var childDockPanel = new DockPanel();
            childDockPanel.SetValue(DockPanel.DockProperty, Dock.Bottom);
            var grandchildDockPanel = new DockPanel();
            grandchildDockPanel.SetValue(DockPanel.DockProperty, Dock.Right);
            var button = new Button();
            button.Width = 100;
            button.Margin = new System.Windows.Thickness(5);
            button.HorizontalAlignment = HorizontalAlignment.Right;
            button.SetBinding(ButtonBase.CommandProperty, "OKCommand");
            button.Content = "OK";
            grandchildDockPanel.Children.Add(button);
            childDockPanel.Children.Add(grandchildDockPanel);
            _dockPanel.Children.Add(childDockPanel);
            _detailPathGeometry = new DetailPathGeometry();
            _detailPathGeometry.Name = "DetailPathGeometry";
            _detailPathGeometry.SetBinding(FrameworkElement.DataContextProperty, "ViewModel.Value");
            _detailPathGeometry.CenterVisibility = Visibility.Collapsed;
            _detailPathGeometry.Stretch = System.Windows.Media.Stretch.Fill;
            _detailPathGeometry.SetBinding(WidthPlacementProperty, new Binding("WidthPlacement.Value") { Source = this });
            var canvas = new Canvas();
            _centerPoint = new Ellipse();
            _centerPoint.Width = 5;
            _centerPoint.Height = 5;
            _centerPoint.Fill = Brushes.Red;
            var viewModel = ((DataContext as DetailPieViewModel).ViewModel.Value as NPieViewModel);
            _centerPoint.SetValue(Canvas.LeftProperty, viewModel.PieCenterPoint.Value.X - viewModel.Left.Value + 100);
            _centerPoint.SetValue(Canvas.TopProperty, viewModel.PieCenterPoint.Value.Y - viewModel.Top.Value + 100);
            canvas.Children.Add(_centerPoint);
            var stackPanel = new StackPanel();
            stackPanel.Orientation = Orientation.Horizontal;
            stackPanel.SetValue(Canvas.LeftProperty, viewModel.PieCenterPoint.Value.X - viewModel.Left.Value + 115);
            stackPanel.SetValue(Canvas.TopProperty, viewModel.PieCenterPoint.Value.Y - viewModel.Top.Value + 115);
            var style = new Style();
            style.TargetType = typeof(DoubleTextBox);
            var setter = new Setter();
            setter.Property = WidthProperty;
            setter.Value = 40;
            style.Setters.Add(setter);
            stackPanel.Resources.Add(string.Empty, style);
            var label = new Label();
            label.Foreground = Brushes.Red;
            label.Content = "Center Point";
            stackPanel.Children.Add(label);
            var doubleTextBox = new DoubleTextBox();
            doubleTextBox.Foreground = Brushes.Red;
            doubleTextBox.SetBinding(DoubleTextBox.DoubleTextProperty, "PieCenterPoint.Value.X");
            stackPanel.Children.Add(doubleTextBox);
            var doubleTextBox2 = new DoubleTextBox();
            doubleTextBox2.Foreground = Brushes.Red;
            doubleTextBox2.SetBinding(DoubleTextBox.DoubleTextProperty, "PieCenterPoint.Value.Y");
            stackPanel.Children.Add(doubleTextBox2);
            canvas.Children.Add(stackPanel);
            _detailPathGeometry.Content = canvas;
            _dockPanel.Children.Add(_detailPathGeometry);
            Content = _dockPanel;
        }

        private Ellipse hitTestResult;

        private void DetailPie_LayoutUpdated(object sender, System.EventArgs e)
        {
            var detailPathGeometry = _detailPathGeometry;
            detailPathGeometry.ApplyTemplate();
            var widthCell = detailPathGeometry.FindVisualChildren<DockPanel>().First(x => x.Name == "WidthCell");
            var widthCellInternal = detailPathGeometry.FindVisualChildren<StackPanel>().First(x => x.Name == "WidthCellInternal");
            var dpgRoot = widthCell.FindAncestor<Grid>().FindAncestor<Grid>().FindAncestor<Grid>();
            var x = _centerPoint.FindAncestor<Canvas>();
      //Measure()とArrange()はActualWidthとActualHeightをゼロにしないために必要
            dpgRoot.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
            dpgRoot.Arrange(new Rect(0, 0, dpgRoot.DesiredSize.Width, dpgRoot.DesiredSize.Height));
            widthCell.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
            widthCell.Arrange(new Rect(0, 0, widthCell.DesiredSize.Width, widthCell.DesiredSize.Height));
            widthCellInternal.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
            widthCellInternal.Arrange(new Rect(0, 0, widthCell.DesiredSize.Width, widthCell.DesiredSize.Height));
            x.UpdateLayout();
            widthCell.UpdateLayout();
            widthCellInternal.UpdateLayout();
            var centerPointBounds = _centerPoint.BoundsRelativeTo(x);
      //下記のコードは必ずnullが返る
            var hitTestResult = widthCellInternal.InputHitTest(new Point(centerPointBounds.X + centerPointBounds.Width / 2, centerPointBounds.Y + centerPointBounds.Height / 2));
            if (hitTestResult != null)
            {
                WidthPlacement.Value = Placement.Top;
            }
            else
            {
                WidthPlacement.Value = Placement.Bottom;
            }
        }

        public ReactivePropertySlim<Placement> WidthPlacement { get; } = new ReactivePropertySlim<Placement>(Placement.Bottom);
    }
}

Extensions.cs

    public static class Extensions
    {
        :
        public static Rect BoundsRelativeTo(this FrameworkElement element, Visual relativeTo)
        {
            var slot = LayoutInformation.GetLayoutSlot(element);
            return element.TransformToVisual(relativeTo).TransformBounds(slot);
        }
        :
    } 

何かお気づきの点があれば、回答していただけると助かります。
よろしくお願いいたします。

該当するソースコード

ブランチ:feature/#25

自分で試したこと

VisualTreeHelper.HitTest(Visual, HitTestFilterCallback, HitTestResultCallback, HitTestParameters)も試したのですが、うまくいきませんでした。

0

No Answers yet.

Your answer might help someone💌