Control.Background 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컨트롤의 배경을 설명하는 브러시를 가져오거나 설정합니다.
public:
property System::Windows::Media::Brush ^ Background { System::Windows::Media::Brush ^ get(); void set(System::Windows::Media::Brush ^ value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.Media.Brush Background { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Background : System.Windows.Media.Brush with get, set
Public Property Background As Brush
속성 값
컨트롤의 배경을 채우는 데 사용되는 브러시입니다. 기본값은 Transparent입니다.
- 특성
예제
다음 예제에서는 컨트롤의 배경 속성을 설정 하는 방법을 보여 줍니다.
<Button Name="btn" Background="Red"
Click="ChangeBackground">
Background
</Button>
void ChangeBackground(object sender, RoutedEventArgs e)
{
if (btn.Background == Brushes.Red)
{
btn.Background = new LinearGradientBrush(Colors.LightBlue, Colors.SlateBlue, 90);
btn.Content = "Control background changes from red to a blue gradient.";
}
else
{
btn.Background = Brushes.Red;
btn.Content = "Background";
}
}
Private Sub ChangeBackground(ByVal Sender As Object, ByVal e As RoutedEventArgs)
If (Equals(btn.Background, Brushes.Red)) Then
btn.Background = New LinearGradientBrush(Colors.LightBlue, Colors.SlateBlue, 90)
btn.Content = "Control background changes from red to a blue gradient."
Else
btn.Background = Brushes.Red
btn.Content = "Background"
End If
End Sub
다음 예제에서는 트리거를 누를 때 단추의 배경색을 변경 하는 템플릿을 보여 줍니다.
<Button FontSize="16" FontWeight="Bold">Click the Background
<Button.Template>
<ControlTemplate TargetType="{x:Type Button}">
<Border Background="{TemplateBinding Background}">
<ContentPresenter/>
</Border>
</ControlTemplate>
</Button.Template>
<Button.Style>
<Style TargetType="{x:Type Button}">
<Setter Property="Background" Value="Blue"/>
<Style.Triggers>
<Trigger Property="IsPressed" Value="true">
<Setter Property="Background" Value="Red"/>
</Trigger>
</Style.Triggers>
</Style>
</Button.Style>
</Button>
설명
Background 속성은 컨트롤의 휴면 상태에만 적용 됩니다. 컨트롤의 기본 스타일을 컨트롤의 상태가 변경 될 때의 모양을 지정 합니다. 예를 들어, 설정 하는 경우는 Background 속성에는 Button, 단추 누름 또는 사용 하지 않도록 설정 하지는 경우에 해당 값에 합니다. 백그라운드의 고급 사용자 지정 하는 컨트롤을 만들려는 경우 컨트롤의 스타일을 정의 해야 합니다.
이 속성에만 해당 템플릿을 사용 하 여 컨트롤을 적용 합니다 Background 매개 변수로 속성입니다. 다른 컨트롤에 대해이 속성이 아무런 영향이 없습니다.
종속성 속성 정보
식별자 필드 | BackgroundProperty |
메타 데이터 속성 설정 true |
AffectsRender, SubPropertiesDoNotAffectRender |