C# WPF 多个window 相互覆盖的次序控制 不用topmost

2021-06-21 22:09

阅读:427

标签:htm   vedio   mos   current   content   http   href   frame   覆盖   

原文:C# WPF 多个window 相互覆盖的次序控制 不用topmost

?


WindowInteropHelper mianHanel = new WindowInteropHelper(MainWindow.Current);

WindowInteropHelper vedioWin = new WindowInteropHelper(this);
WindowInteropHelper FrameWin = new WindowInteropHelper(FrameWindow);
FrameWin.Owner = IntPtr.Zero;
mianHanel.Owner = vedioWin.Handle;
vedioWin.Owner = FrameWin.Handle;

C# WPF 多个window 相互覆盖的次序控制 不用topmost

标签:htm   vedio   mos   current   content   http   href   frame   覆盖   

原文地址:https://www.cnblogs.com/lonelyxmas/p/10223665.html


评论


亲,登录后才可以留言!