PhotoView.xaml 681 B

123456789101112131415
  1. <Page
  2. x:Class="YJMPD_UWP.Views.PhotoView"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:YJMPD_UWP.Views"
  6. xmlns:convert="using:YJMPD_UWP.Helpers.Converter"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. mc:Ignorable="d">
  10. <StackPanel Style="{StaticResource BaseStackPanel}">
  11. <TextBlock Text="{Binding TimeOut}" Margin="0,5,0,10" />
  12. <Button Content="Take Photo" Style="{StaticResource Green}" Click="PhotoButton_Click" />
  13. </StackPanel>
  14. </Page>