TextBlock
背景が透明な単一のコントロールを除いて、実際には表示されないWPFウィンドウを作成したいと思います。最終結果は次のようになります。
このような「ゴースト」ウィンドウを作成するにはどうすればよいですか?
次のことを試してください。
<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>