728x90
반응형
728x170
▶ MainApplication.xaml
<Application x:Class="TestProject.MainApplication"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<materialDesign:BundledTheme
BaseTheme="Inherit"
PrimaryColor="DeepPurple"
SecondaryColor="Lime"
ColorAdjustment="{materialDesign:ColorAdjustment}" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
반응형
▶ 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"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
Width="800"
Height="600"
Title="Card 엘리먼트 사용하기"
Background="{DynamicResource MaterialDesignPaper}"
FontFamily="나눔고딕코딩"
FontSize="16">
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Button.xaml" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Card.xaml" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.CheckBox.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Window.Resources>
<Grid>
<materialDesign:Card
VerticalAlignment="Center"
Width="200"
Background="{DynamicResource PrimaryHueDarkBrush}"
Foreground="{DynamicResource PrimaryHueDarkForegroundBrush}"
Padding="10">
<StackPanel>
<TextBlock
Margin="15 15 10 10"
FontSize="16"
Text="Notes" />
<CheckBox
Style="{StaticResource MaterialDesignUserForegroundCheckBox}"
Margin="15 5 15 0"
Content="Do something good" />
<CheckBox
Style="{StaticResource MaterialDesignUserForegroundCheckBox}"
Margin="15 5 15 0"
Content="Take a breather" />
<CheckBox
Style="{StaticResource MaterialDesignUserForegroundCheckBox}"
Margin="15 5 15 0"
Content="And go create" />
<RadioButton
Style="{DynamicResource MaterialDesignUserForegroundRadioButton}"
Margin="15 5 15 0"
Content="This?" />
<RadioButton
Style="{DynamicResource MaterialDesignUserForegroundRadioButton}"
Margin="15 5 15 0"
Content="Or This?" />
<Separator Style="{StaticResource MaterialDesignLightSeparator}" />
<StackPanel
HorizontalAlignment="Right"
Margin="10 0 10 10"
Orientation="Horizontal">
<Button
Style="{StaticResource MaterialDesignToolForegroundButton}"
HorizontalAlignment="Right"
Width="30"
Padding="2 0 0 0"
materialDesign:RippleAssist.IsCentered="True">
<materialDesign:PackIcon Kind="CheckAll" />
</Button>
</StackPanel>
</StackPanel>
</materialDesign:Card>
</Grid>
</Window>
728x90
반응형
그리드형(광고전용)
'Material Design > WPF' 카테고리의 다른 글
[MATERIAL DESIGN/WPF/.NET5] CheckBox 엘리먼트 사용하기 (0) | 2021.12.14 |
---|---|
[MATERIAL DESIGN/WPF/.NET5] Chip 엘리먼트 사용하기 (0) | 2021.12.14 |
[MATERIAL DESIGN/WPF/.NET5] Flipper 엘리먼트 사용하기 (0) | 2021.12.13 |
[MATERIAL DESIGN/WPF/.NET5] Flipper 엘리먼트 사용하기 (0) | 2021.12.13 |
[MATERIAL DESIGN/WPF/.NET5] Flipper 엘리먼트 사용하기 (0) | 2021.12.13 |
[MATERIAL DESIGN/WPF/.NET5] Card 엘리먼트 사용하기 (0) | 2021.12.13 |
[MATERIAL DESIGN/WPF/.NET5] Card 엘리먼트 사용하기 (0) | 2021.12.13 |
[MATERIAL DESIGN/WPF/.NET5] RatingBar 엘리먼트 사용하기 (0) | 2021.12.13 |
[MATERIAL DESIGN/WPF/.NET5] Card 엘리먼트 사용하기 (0) | 2021.12.13 |
[MATERIAL DESIGN/WPF/.NET5] Card 엘리먼트 사용하기 (0) | 2021.12.13 |
댓글을 달아 주세요