WPF 투명 airo 효과 주기를 위해 opacity를 설정해 주었지만 배경이 그냥 까만색으로 바뀌기만 한다.
이는 배경과 융화될수 있는 AllowsTransparency 설정이 필요하기 때문이다.
또한 windowStyle 이 none 인 상태만 투명한 효과를 가진다.
어찌나 삽질을 했던지..
아래와같이 추가해 주면 된다.
<Window x:Class="PictureViewer.ExplorerWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:panels3D="clr-namespace:Visual3DControls;assembly=Visual3DControls"
xmlns:pres="clr-namespace:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation;assembly=Microsoft.WindowsAPICodePack.Shell"
Title="ExplorerWindow" Height="400" Width="850"
Background="Black"
WindowStyle="None"
AllowsTransparency="True"
Opacity="0.5"
Name="aaaa"
>
'WPF Programma' 카테고리의 다른 글
C# 에서 Thread 돌리는 방법 (How to use thread in WPF ) (0) | 2012.06.03 |
---|---|
[WPF] 윈도우 최대 확대 효과 주기 [Window MaxSize effect in WPF] (0) | 2012.06.03 |
WPF 폴더 생성 & PPTX 불러와 이미지화 시키기 (0) | 2012.05.28 |
라디오 버튼 그룹 지정해 주기 (Grouping Radio button for multi selecting) (0) | 2012.05.06 |
이벤트 라우팅과 버블링 터널링 (Event Routing & bubbling and terneling... (1) | 2012.05.06 |