12345678910111213141516 |
- <UserControl x:Class="Aitex.Core.UI.View.Frame.BottomView"
- 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"
- mc:Ignorable="d"
- d:DesignHeight="70" d:DesignWidth="300">
- <Grid x:Name="gridContent">
- <Button x:Name="btnBackward" Tag="Backward" VerticalAlignment="Center" Style="{StaticResource NavUpButton}" Click="btn_Click" Margin="82,0,0,0" />
- <Button x:Name="btnExit" Tag="Exit" Content="{DynamicResource GlobalLableButtonExit}" VerticalAlignment="Center" Style="{StaticResource MainButton}" Click="btn_Click" Margin="0,0,166,0" />
- <Button x:Name="btnForward" Tag="Forward" VerticalAlignment="Center" Style="{StaticResource NavBackButton}" Click="btn_Click" Margin="0,0,82,0"/>
- </Grid>
- </UserControl>
|