xaml-sdk/Window/AlertWithDifferentIcon/Example.xaml

16 строки
939 B
XML

<UserControl x:Class="AlertWithDifferentIcon.Example"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<StackPanel Orientation="Vertical">
<telerik:RadButton Content="Open Alert with Icon 1" Click="OnOpenIcon1Clicked"
VerticalAlignment="Center" HorizontalAlignment="Center" Margin="10"/>
<telerik:RadButton Content="Open Alert with Icon 2" Click="OnOpenIcon2Clicked"
VerticalAlignment="Center" HorizontalAlignment="Center" Grid.Row="1" Margin="10"/>
</StackPanel>
</UserControl>