wpf 对话框显示在鼠标点击的位置

---记录wpf使用中的点滴

——————————————————————————————————————

UIElement  uiElement ;

Point pos = uiElement .PointToScreen(Mouse.GetPosition(uiElement ));

xWindow xWin;

xWin= new xWin() { Top = pos.Y, Left = pos.X };

你可能感兴趣的:(WPF)