BottomView.xaml 1.0 KB

12345678910111213141516
  1. <UserControl x:Class="Aitex.Core.UI.View.Frame.BottomView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. mc:Ignorable="d"
  7. d:DesignHeight="70" d:DesignWidth="300">
  8. <Grid x:Name="gridContent">
  9. <Button x:Name="btnBackward" Tag="Backward" VerticalAlignment="Center" Style="{StaticResource NavUpButton}" Click="btn_Click" Margin="82,0,0,0" />
  10. <Button x:Name="btnExit" Tag="Exit" Content="{DynamicResource GlobalLableButtonExit}" VerticalAlignment="Center" Style="{StaticResource MainButton}" Click="btn_Click" Margin="0,0,166,0" />
  11. <Button x:Name="btnForward" Tag="Forward" VerticalAlignment="Center" Style="{StaticResource NavBackButton}" Click="btn_Click" Margin="0,0,82,0"/>
  12. </Grid>
  13. </UserControl>