Advertisement
Guest User

XAML Picker

a guest
Jun 5th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.68 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
  3.              xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4.              x:Class="OrganizeSe.cadProduto">
  5.    
  6.     <StackLayout Margin="10,10,10,0">
  7.         <Entry  Placeholder="Insira o nome do produto"                
  8.                 FontSize="20"/>
  9.  
  10.         <Label Text="Selecione os ingredientes:"
  11.                FontSize="20"
  12.                TranslationX="5"
  13.                TranslationY="15"/>
  14.  
  15.         <Picker Title="--Selecione--"
  16.                 ItemsSource="{Binding listarIng}"
  17.                 ItemDisplayBinding="{Binding Value}"/>
  18.     </StackLayout>
  19. </ContentPage>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement