Files
WPF_Practice/PacticeSolution/ResourceSample/App.xaml

10 lines
424 B
Plaintext
Raw Normal View History

2023-06-20 17:09:16 +09:00
<Application x:Class="ResourceSample.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ResourceSample"
StartupUri="MainWindow.xaml">
<Application.Resources>
<SolidColorBrush x:Key="CustomRed" Color="#e3533d"/>
</Application.Resources>
</Application>