Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UIElementMetro スタイル アプリの絶対位置を特定する方法が見つかりません。誰かが解決策を知っていますか?
UIElement
(コンテキスト:ポップアップを呼び出したボタンの横に表示したい)
これはうまくいくはずです...
private void Button_Click(object sender, RoutedEventArgs e) { var button = sender as Button; var ttv = button.TransformToVisual(Window.Current.Content); Point screenCoords = ttv.TransformPoint(new Point(0, 0)); }