Three stops LinearGradientBrush
![Three stops LinearGradientBrush](http://www.java2s.com/Code/VBImages/WPF-ThreeStopsLinearGradientBrush.PNG)
<Window x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="GradientBackground" Height="150" Width="200">
<Grid>
<Grid.Background>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
<GradientStop Color="Red" Offset="0" />
<GradientStop Color="White" Offset="0.5" />
<GradientStop Color="Blue" Offset="1" />
</LinearGradientBrush>
</Grid.Background>
</Grid>
</Window>
Related examples in the same category