DFCreateTaskView.xaml 545 B

12345678910
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="PRS.Mobile.DFCreateTaskView">
  5. <ContentView.Content>
  6. <Button HorizontalOptions="FillAndExpand" VerticalOptions="Center" Text="Create Task" Background="#15C7C1" FontAttributes="Bold" TextColor="white"
  7. FontSize="Medium"
  8. x:Name="button" Clicked="Button_Clicked"/>
  9. </ContentView.Content>
  10. </ContentView>