카테고리 없음

WPF따라하기 - WPF Style 테스트

카멜레온개발자 2022. 8. 6. 15:05

**참조 사이트 : https://youtu.be/eOTCR4yK3Aw?list=PL_fV1knZRgi7Uu6GDZi5SzNvjRiXT4Ivd

 

 

 

1. 초기화면

2. 마우스를 버튼에 올리면 버튼 색상 바뀜

3. 버튼을 누르면 버튼 바로 위의 텍스트 스타일이 바뀜

 

* Type 1 : 태그에 직접 스타일 기술

* Type 2 : 하위 요소의 Style 이용

* Type 3 : 리소스의 Style 이용

* Type 4 : 리소스의 재정의 Style 이용

* Type 5 : 스타일의 동적 변경

* Type 6 : 본문의 특정 컨트롤의 Style을 일괄적으로 적용

<Window x:Class="AboutWpfStyle.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:AboutWpfStyle"
        mc:Ignorable="d"
        Title="MainWindow" Height="250" Width="400">
    <Window.Resources>
        <Style x:Key="MyTextStyle">
            <Setter Property="TextBlock.Background" Value="Black"/>
            <Setter Property="TextBlock.Foreground" Value="White"/>
            <Setter Property="TextBlock.HorizontalAlignment" Value="Center"/>
        </Style>
        <!-- Style 재정의 -->
        <Style x:Key="MyTextStyle2" BasedOn="{StaticResource MyTextStyle}">
            <Setter Property="TextBlock.Foreground" Value="Red"/>
        </Style>

        <!-- Type 6 : 본문의 특정 컨트롤의 Style을 일괄적으로 적용-->
        <Style TargetType="Button">
            <Setter Property="Background" Value="Blue"/>
            <Style.Triggers>
                <Trigger Property="IsMouseOver" Value="true">
                    <Setter Property="Background" Value="Red"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </Window.Resources>
    <StackPanel>
        <!-- Type 1 : 태그에 직접 스타일 기술 -->
        <TextBlock Background="Black" Foreground="White" HorizontalAlignment="Center">직접명시</TextBlock>

        <!-- Type 2 : 하위 요소의 Style 이용 -->
        <TextBlock>
            <TextBlock.Style>
                <Style>
                    <Setter Property="TextBlock.Background" Value="Black"/>
                    <Setter Property="TextBlock.Foreground" Value="White"/>
                    <Setter Property="TextBlock.HorizontalAlignment" Value="Center"/>

                </Style>
            </TextBlock.Style>
            서브요소 Style 이용
        </TextBlock>

        <!-- Type 3 : 리소스의 Style 이용 -->
        <TextBlock Style="{StaticResource MyTextStyle}">리소스 Style 이용</TextBlock>
        <!-- Type 4 : 리소스의 재정의 Style 이용 -->
        <TextBlock Style="{StaticResource MyTextStyle2}">리소스 Style 재정의 이용</TextBlock>
        <!-- Type 5 : 스타일의 동적 변경 -->
        <TextBlock x:Name="DemoText">버튼을 누르면 스타일이 변경됨</TextBlock>
        <Button Click="Button_Click">확인</Button>
    </StackPanel>
</Window>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace AboutWpfStyle
{
    /// <summary>
    /// MainWindow.xaml에 대한 상호 작용 논리
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            if(DemoText.Style == null)
            {
                DemoText.Style = Resources["MyTextStyle2"] as Style;
            }
            else
            {
                DemoText.Style = null;
            }
        }
    }
}