728x90
Window.Resources 를 사용하여 오브젝트들의 기본 틀정의 해서 손쉽게 디자인을 적용할 수 있다.
<Window.Resources>
<Style x:Key="testStyle">
<Setter Property="Label.Background">
<Setter.Value>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0" Opacity="0.3">
<GradientStop Color="#FF00A7FF" Offset="0.003"/>
<GradientStop Color="White" Offset="1"/>
<GradientStop Color="#FF23DC3F" Offset="0.508"/>
</LinearGradientBrush>
</Setter.Value>
</Setter>
</Style>
</Window.Resources>
<Label x:Name="label" Style="{StaticResource testStyle}" Content="Label" HorizontalAlignment="Left" Margin="88,30,0,0" Grid.Row="1" VerticalAlignment="Top"/>
728x90
'VisualStudio > WPF' 카테고리의 다른 글
[WPF] 다양한이벤트처리방법 Nuget XamlBehaviorsWpf (0) | 2023.01.05 |
---|---|
[WPF] 사용자 정의컨트롤 디펜던시프로퍼티(DependencyProperty) (0) | 2023.01.05 |
[WPF] Async RelayCommand 사용 방법 (0) | 2023.01.05 |
[WPF] RelayCommand (0) | 2023.01.04 |
[WPF] INotifyPropertyChanged사용 하여 MVVM 만들기 (0) | 2023.01.04 |