다음을 통해 공유


방법: 시스템 브러시로 영역 그리기

SystemColors 클래스는 시스템 브러시 및 색(예: ControlBrush, ControlBrushKeyDesktopBrush)에 대한 액세스를 제공합니다. 시스템 브러시는 지정된 시스템 색으로 영역을 그리는 SolidColorBrush 개체입니다. 시스템 브러시는 항상 단색을 생성하므로 그라데이션을 만드는 데는 사용할 수 없습니다.

시스템 브러시는 정적 또는 동적 리소스로 사용할 수 있습니다. 사용자 애플리케이션이 실행될 때 사용자가 시스템 브러시를 변경하는 경우 브러시가 자동으로 업데이트되게 하려면 동적 리소스를 사용하고, 그렇지 않으면 정적 리소스를 사용합니다. SystemColors 클래스는 엄격한 명명 규칙을 따르는 다양한 정적 속성을 포함합니다.

  • *<SystemColor>*Brush

    지정된 시스템 색의 SolidColorBrush에 대한 정적 참조를 가져옵니다.

  • *<SystemColor>*BrushKey

    지정된 시스템 색의 SolidColorBrush에 대한 동적 참조를 가져옵니다.

  • *<SystemColor>*Color

    지정된 시스템 색의 Color 구조체에 대한 정적 참조를 가져옵니다.

  • *<SystemColor>*ColorKey

    지정된 시스템 색의 Color 구조체에 대한 동적 참조를 가져옵니다.

시스템 색은 브러시를 구성하는 데 사용할 수 있는 Color 구조체입니다. 예를 들어 시스템 색으로 LinearGradientBrush 개체의 그라데이션 중지점의 Color 속성을 설정하여 시스템 색을 사용하여 그라데이션을 만들 수 있습니다. 예제를 보려면 그라데이션에 시스템 색 사용을 참조하세요.

예제

다음 예제에서는 동적 시스템 브러시 참조를 사용하여 단추의 배경색을 설정합니다.

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  WindowTitle="SystemColors Example" Background="White">  
  <StackPanel Margin="20">
 
    <!-- Uses a dynamic resource to set the 
         background of a button. 
         If the desktop brush changes while this application
         is running, this button will be updated. -->
    <Button 
      Background="{DynamicResource {x:Static SystemColors.DesktopBrushKey}}" 
      Content="Hello, World!" />

  </StackPanel>
</Page>

다음 예제에서는 정적 시스템 브러시 참조를 사용하여 단추의 배경색을 설정합니다.

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  WindowTitle="SystemColors Example" Background="White">  
  <StackPanel Margin="20">
 
    <!-- Uses a static brush to set the
         background of a button. 
         If the desktop brush changes while this application
         is running, this button will not be updated until
         the page is loaded again. -->
    <Button 
      Background="{x:Static SystemColors.DesktopBrush}" 
      Content="Hello, World!"  /> 

  </StackPanel>
</Page>

그라데이션에 시스템 색을 사용하는 방법을 보여 주는 예제에 대해서는 그라데이션에 시스템 색 사용을 참조하세요.

참고 항목