Skip to content
Permalink
fce7e9cd71
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
46 lines (29 sloc) 1.48 KB
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="MyDailyTaskManger.ViewTaskPage"
Title="View Task">
<StackLayout BackgroundColor="White">
<StackLayout BackgroundColor="RoyalBlue" Padding="0, 0,0,25">
<Label
HorizontalTextAlignment="Center" FontSize="Title"
Text="Add task"
Margin="0, 25,0,0"
TextColor="White"
/>
</StackLayout>
<StackLayout Margin="20, 30,20,0">
<Label HorizontalTextAlignment="Center" FontSize="Large" Text="Selected Task">
</Label>
<Label Margin="0,10,0,10" BackgroundColor="LightBlue" HeightRequest="1" />
<StackLayout>
<Label Margin="0,40,0,0" x:Name="title" Text="{Binding title}" />
<Label Margin="0,10,0,10" BackgroundColor="LightBlue" HeightRequest="1" />
<Label Margin="0,0,0,0" x:Name="details" Text="{Binding detail}" />
<Label Margin="0,10,0,10" BackgroundColor="LightBlue" HeightRequest="1" />
<Label Margin="0,0,0,0" x:Name="dateCreated" Text="{Binding dateCreated}" />
<Label Margin="0,10,0,10" BackgroundColor="LightBlue" HeightRequest="1" />
</StackLayout>
<Button Margin="0,20,0,10" Clicked="HandleFormClose" TextColor="WhiteSmoke" BackgroundColor="RoyalBlue" Text="Close" />
<Button Margin="0,10,0,20" Clicked="HandleFormDelete" TextColor="WhiteSmoke" BackgroundColor="DarkRed" Text="Delete Task" />
</StackLayout>
</StackLayout>
</ContentPage>