- WindowStyle="None"
- AllowsTransparency="True"
- Background="Transparent"
ウィンドウの上に何も載せないと実行時に何も見えないので注意。また、透明化するとクリックイベントも拾ってくれなくなるのでこれも注意。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Window x:Class="TransparentForm.MainWindow" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
WindowStyle="None" AllowsTransparency="True" Background="Transparent" Title="MainWindow" Height="167" Width="443" Loaded="Window_Loaded"> | |
</Window> |
0 件のコメント:
コメントを投稿