即使在最小化应用程序后,我也试图Button
始终保持领先。很像浮动Button
,当我单击应用程序隐藏的按钮时,再次单击应用程序显示。
Window可以设置Topmost="True"
属性,那Button
呢?
即使在最小化应用程序后,我也试图Button
始终保持领先。很像浮动Button
,当我单击应用程序隐藏的按钮时,再次单击应用程序显示。
Window可以设置Topmost="True"
属性,那Button
呢?
您应该使用按钮制作多个窗口,就像在 XAML 中这样:
<Window AllowTransparency="True" ResizeMode="NoResize" WindowStyle="None"
Topmost="True" ShowInTaskbar="False" SizeToContent="WidthAndHeight"
Background="{x:Null}">
<Button x:Name="HideShowButton" Content="Restore" />
</Window>
没有窗口按钮就不能存在,但是有了这些属性,窗口将是不可见的。