■ Window 클래스를 사용해 투명 윈도우를 만드는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" WindowStyle="None" AllowsTransparency="True" Background="Transparent" SizeToContent="WidthAndHeight"> <Button Width="100" Height="30"> 닫기 </Button> </Window> |