Simple Comparison
HTML:
.MyButtonStyle {width: 250px;
background-color: black;
color: goldenrod;
}
In use:
<asp:Button Text="Hello" runat="server" CssClass="MyButtonStyle" />
XAML:
<Style x:Name="MyButtonStyle" TargetType="Button"><Setter Property="Width" Value="250" />
<Setter Property="Background" Value="Black" />
<Setter Property="Foreground" Value="Goldenrod" />
</Style>
In use:
<Button Content="Hello" Style="{StaticResource MyButtonStyle}" />
No comments:
Post a Comment