如何在一直出现的 Windows 10 屏幕上显示文本?
How to display a text at the Windows 10 screen that appears always?
我想在 windows 10 显示需要始终充值的文本,因为 windows 10 显示“激活 windows” 而 windows 不是已激活。
是否有任何指南或文档来完成这项工作?
如果您想要无边框 window 且背景透明且始终位于顶部:
<Window x:Class="MyProject.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="450" Width="800" WindowStyle="None" AllowsTransparency="True" Background="Transparent" Topmost="True"
>
<StackPanel>
<TextBlock Text="Activate Windows" FontSize="28"/>
<TextBlock Text="Go to settings to activate Windows."/>
</StackPanel>
</Window>
我想在 windows 10 显示需要始终充值的文本,因为 windows 10 显示“激活 windows” 而 windows 不是已激活。
是否有任何指南或文档来完成这项工作?
如果您想要无边框 window 且背景透明且始终位于顶部:
<Window x:Class="MyProject.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="450" Width="800" WindowStyle="None" AllowsTransparency="True" Background="Transparent" Topmost="True"
>
<StackPanel>
<TextBlock Text="Activate Windows" FontSize="28"/>
<TextBlock Text="Go to settings to activate Windows."/>
</StackPanel>
</Window>