Mega Code Archive

 
Categories / VB.Net Tutorial / WPF
 

Button Based On Style

<StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">     <StackPanel.Resources>         <Style x:Key="normal">             <Setter Property="Control.FontSize" Value="24" />             <Setter Property="Control.Foreground" Value="Blue" />             <Setter Property="Control.HorizontalAlignment" Value="Center" />             <Setter Property="Control.Margin" Value="24" />             <Setter Property="Control.Padding" Value="20, 10, 20, 10" />         </Style>         <Style x:Key="hotbtn" BasedOn="{StaticResource normal}">             <Setter Property="Control.Foreground" Value="Red" />         </Style>     </StackPanel.Resources>     <Button Style="{StaticResource normal}">         Button Number 1     </Button>     <Button Style="{StaticResource hotbtn}">         Button Number 2     </Button>     <Button Style="{StaticResource normal}">         Button Number 3     </Button> </StackPanel>