我想创建一个除了具有透明背景的单个TextBlock
控件之外没有任何外观的WPF窗口。最终结果如下:
如何创建这样一个“幽灵”窗口?
答案 0 :(得分:0)
尝试以下内容:
<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="50" Width="200" AllowsTransparency="True" WindowStyle="None" Background="Transparent">
<TextBlock x:Name="TextClock" FontSize..... etc....>
</TextBlock>
</Window>