Mega Code Archive

 
Categories / C# / WPF
 

Brush resource

<Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">   <Grid.Resources>     <LinearGradientBrush x:Key="backgroundBrush" StartPoint="0,0" EndPoint="1,1">       <GradientStop Color="Blue" Offset="0"/>       <GradientStop Color="White" Offset="0.5"/>       <GradientStop Color="Red" Offset="1"/>     </LinearGradientBrush>     <SolidColorBrush x:Key="borderBrush">Red</SolidColorBrush>   </Grid.Resources>   <Grid.Background>     <StaticResource ResourceKey="backgroundBrush"/>   </Grid.Background>   <DockPanel>     <StackPanel DockPanel.Dock="Bottom" Orientation="Horizontal" HorizontalAlignment="Center">       <Button Background="{StaticResource backgroundBrush}" BorderBrush="{StaticResource borderBrush}" Margin="5">         <Image Height="21" Source="c:\image.gif"/>       </Button>     </StackPanel>     <ListBox/>   </DockPanel> </Grid>