728x90
반응형
728x170
■ DropShadowEffect 엘리먼트를 사용해 테두리가 없는 윈도우에서 그림자 효과를 만드는 방법을 보여준다.
▶ MainWindow.xaml
<Window x:Class="TestProject.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="820"
Height="620"
WindowStyle="None"
Title="DropShadowEffect 엘리먼트 : 테두리가 없는 윈도우에서 그림자 효과 사용하기"
Background="Transparent"
AllowsTransparency="True"
FontFamily="나눔고딕코딩"
FontSize="16">
<Grid
Margin="20"
Background="White">
<Grid.Effect>
<DropShadowEffect
BlurRadius="15"
Color="LightGray"
Direction="-90"
RenderingBias="Quality"
ShadowDepth="2" />
</Grid.Effect>
<Button Name="closeButton"
HorizontalAlignment="Right"
VerticalAlignment="Bottom"
Margin="30"
Width="100"
Height="30"
Content="닫기" />
</Grid>
</Window>
▶ MainWindow.xaml.cs
using System.Windows;
namespace TestProject
{
/// <summary>
/// 메인 윈도우
/// </summary>
public partial class MainWindow : Window
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 생성자 - MainWindow()
/// <summary>
/// 생성자
/// </summary>
public MainWindow()
{
InitializeComponent();
this.closeButton.Click += closeButton_Click;
}
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Method
////////////////////////////////////////////////////////////////////////////////////////// Private
#region 닫기 버튼 클릭시 처리하기 - closeButton_Click(sender, e)
/// <summary>
/// 닫기 버튼 클릭시 처리하기
/// </summary>
/// <param name="sender">이벤트 발생자</param>
/// <param name="e">이벤트 인자</param>
private void closeButton_Click(object sender, RoutedEventArgs e)
{
Close();
}
#endregion
}
}
728x90
반응형
그리드형(광고전용)
'C# > WPF' 카테고리의 다른 글
[C#/WPF] 누겟 설치 : VirtualDesktop.WPF (0) | 2021.03.06 |
---|---|
[C#/WPF] SystemParameters 클래스 : VirtualScreenWidth/VirtualScreenHeight 정적 속성을 사용해 듀얼 모니터 전체 화면 윈도우 표시하기 (0) | 2021.03.06 |
[C#/WPF] Screen 클래스 : AllScreens 정적 속성을 사용해 듀얼 모니터 전체 화면 윈도우 표시하기 (0) | 2021.03.06 |
[C#/WPF] DataTemplate 엘리먼트 : Label 엘리먼트의 ContentTemplate 속성 설정하기 (0) | 2021.03.04 |
[C#/WPF] ContentPresenter 엘리먼트 사용하기 (0) | 2021.03.04 |
[C#/WPF] WindowChrome 엘리먼트 : WindowChrome 첨부 속성을 사용해 윈도우 테두리 제거하기 (0) | 2021.03.04 |
[C#/WPF] 반투명 패널 사용하기 (0) | 2021.03.03 |
[C#/WPF/.NET5] 아크릴 반투명 윈도우 만들기 (0) | 2021.03.01 |
[C#/WPF] IMultiValueConverter 인터페이스 : 이동 변환 변환자 사용하기 (0) | 2021.02.28 |
[C#/WPF] IValueConverter 인터페이스 : 색상→단색 브러시 변환자 사용하기 (0) | 2021.02.28 |
댓글을 달아 주세요