Intersoft ClientUI 8 > ClientUI Controls > Control Library > UI Controls Overview > GlassLabel > How-to: Customize Label Appearance in GlassLabel |
This example shows how to customize label appearance in GlassLabel.
You can customize the GlassLabel appearance through the following properties.
The following example show how to customize GlassLabel appearance.
XAML |
Copy Code
|
---|---|
<Intersoft:GlassLabel Intersoft:DockPanel.Dock="Top" Content="Feedback" SpreadBackground="CornflowerBlue" ImageSource="/CustomizeLabelAppearanceInGlassLabel;component/Images/tools-icon.png" ImageHeight="20" ImageWidth="20" ContentType="ContentAndImage" ImageMargin="0 0 5 0" HorizontalContentAlignment="Left" TextImageRelation="ImageBeforeText" /> <Intersoft:GlassLabel Name="glassLabel" Intersoft:DockPanel.Dock="Bottom" Content="Thank for the feedback" ShineBackground="CornflowerBlue" HorizontalContentAlignment="Center" /> |