如何制作。net MAUI应用程序到always be on top
,top must
,always visible
?
我正在寻找WPF中Topmost="True"
的等价物。
我尝试管理UnFocused
事件并调用Focus()
,但我没有运气:
private void Shell_Unfocused(object sender, FocusEventArgs e)
{
(sender as AppShell).Focus();
}
private void Shell_Disappearing(object sender, EventArgs e)
{
(sender as AppShell).Focus();
}
根据Ralf的建议,TopMost
是一个Windows功能,这是一个功能请求可以在这里跟踪:https://github.com/dotnet/maui/issues/8198.
如果你想让这个功能在Mac上工作,你可以添加"Topmost"壳牌/应用特性.