3

在 WPF 中,我想TabControl在我的代码中获取 a 的角位置,因此我可以在显示时相应地设置 ToolWindow 的位置。

如何获得给定的位置UIElement

buildingInfoWindow = new BuildingInfoWindow(); // BuildingWindow : System.Windows.Window
buildingInfoWindow.Owner = this;

//buildingInfoWindow.Left = ?; // relative X coordinate of my TabControl
//buildingInfoWindow.Top = ?; // relative Y coordinate of my TabControl
4

1 回答 1

7
Point pt = tabControl.TranslatePoint(new Point(0, 0), windowInstance);
于 2009-12-06T06:05:28.067 回答