Resources/XAML/ResourceDictionaries/Gradients.xaml
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <!-- Defining gradient color to be use with specific key --> <LinearGradientBrush x:Key="PinkGradient" EndPoint="0,1" StartPoint="0,0"> <GradientStop Color="#ee9ca7" Offset="0"/> <GradientStop Color="#ffdde1" Offset="1"/> </LinearGradientBrush> <!-- Defining gradient color to be use with specific key --> <LinearGradientBrush x:Key="GradientBLK" EndPoint="0,1" StartPoint="1,1"> <LinearGradientBrush.GradientStops> <GradientStop Color="#f953c6" Offset="0"/> <GradientStop Color="#b91d73" Offset="0.8"/> </LinearGradientBrush.GradientStops> </LinearGradientBrush> </ResourceDictionary> |