Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Last active August 31, 2017 14:14
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save juucustodio/f74259d7166e585b2acb90dccba7b237 to your computer and use it in GitHub Desktop.
Demo de utilização da Câmera - Xamarin.Forms http://julianocustodio.com/2017/08/31/camera-xamarin-forms
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:DemoCamera"
x:Class="DemoCamera.MainPage">
<StackLayout>
<Button Text="Tirar Foto" Clicked="TirarFoto" FontSize="20" />
<Button Text="Escolher Foto" Clicked="EscolherFoto" FontSize="20" />
<Button Text="Gravar Video" Clicked="GravarVideo" FontSize="20" />
<Button Text="Escolher Video" Clicked="EscolherVideo" FontSize="20" />
<Image x:Name="MinhaImagem" />
</StackLayout>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment