Permalink
Cannot retrieve contributors at this time
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?
Donghuan-He/MainPage.xaml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
272 lines (252 sloc)
9.95 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<ContentPage | |
x:Class="WeatherApp.MainPage" | |
xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
xmlns:local="clr-namespace:WeatherApp" | |
BackgroundColor="{DynamicResource SecondaryColor}"> | |
<ContentPage.Resources> | |
<ResourceDictionary> | |
<Style x:Key="labelStyle" TargetType="Label"> | |
<Setter Property="FontSize" Value="Small" /> | |
<Setter Property="TextColor" Value="Gray" /> | |
</Style> | |
<Style x:Key="labelResultStyle" TargetType="Label"> | |
<Setter Property="FontSize" Value="Medium" /> | |
<Setter Property="Margin" Value="10,0,0,0" /> | |
</Style> | |
<local:UnitConverter x:Key="unitConverter" /> | |
</ResourceDictionary> | |
</ContentPage.Resources> | |
<Grid VerticalOptions="FillAndExpand"> | |
<Grid.RowDefinitions> | |
<RowDefinition Height="Auto" /> | |
<RowDefinition Height="Auto" /> | |
<RowDefinition Height="Auto" /> | |
<RowDefinition Height="Auto" /> | |
<RowDefinition Height="Auto" /> | |
<RowDefinition Height="*" /> | |
</Grid.RowDefinitions> | |
<Image | |
Aspect="Fill" | |
HeightRequest="300" | |
Source="overlay.png" | |
VerticalOptions="StartAndExpand" /> | |
<StackLayout | |
Margin="20,50" | |
HorizontalOptions="Start" | |
Orientation="Vertical" | |
Spacing="20" | |
VerticalOptions="Start"> | |
<StackLayout Orientation="Horizontal"> | |
<!--<Label | |
FontSize="16" | |
Text="{Binding Country}" | |
TextColor="White" | |
VerticalOptions="Center" />--> | |
<Label | |
FontSize="16" | |
Text="{Binding City}" | |
TextColor="White" | |
FontAttributes="Bold" | |
VerticalOptions="Center" /> | |
</StackLayout> | |
</StackLayout> | |
<StackLayout | |
Margin="0,20" | |
HorizontalOptions="Center" | |
Orientation="Vertical" | |
VerticalOptions="Center"> | |
<StackLayout HorizontalOptions="Center" Orientation="Horizontal"> | |
<!--<Image | |
HeightRequest="50" | |
Source="weather.png" | |
VerticalOptions="Center" | |
WidthRequest="50" />--> | |
<Label | |
FontAttributes="Bold" | |
FontSize="70" | |
Text="{Binding Weather.Temperature}" | |
TextColor="White" | |
VerticalOptions="Center" /> | |
<Label | |
FontSize="34" | |
Text="°C" | |
TextColor="White" | |
VerticalOptions="Center" /> | |
</StackLayout> | |
<Label | |
FontSize="16" | |
MaximumWidthRequest="300" | |
HorizontalOptions="Center" | |
Text="{Binding Weather.Narrative}" | |
TextColor="White" /> | |
<Label | |
FontSize="12" | |
Margin="40" | |
HorizontalOptions="Center" | |
Text="{Binding UpdateTimeFormat}" | |
TextColor="White" /> | |
</StackLayout> | |
<Frame | |
Grid.Row="1" | |
Margin="20,-40,20,0" | |
Padding="0" | |
CornerRadius="10" | |
HasShadow="True" | |
HeightRequest="120" | |
VerticalOptions="Start"> | |
<Grid | |
Margin="0,35,0,0" | |
HorizontalOptions="FillAndExpand" | |
VerticalOptions="CenterAndExpand"> | |
<Grid.ColumnDefinitions> | |
<ColumnDefinition Width="*" /> | |
<ColumnDefinition Width="*" /> | |
<ColumnDefinition Width="*" /> | |
<ColumnDefinition Width="*" /> | |
</Grid.ColumnDefinitions> | |
<StackLayout | |
HorizontalOptions="CenterAndExpand" | |
Orientation="Vertical" | |
Spacing="10"> | |
<Image Source="humidity.png" HeightRequest="30" /> | |
<StackLayout HorizontalOptions="CenterAndExpand" Spacing="7"> | |
<Label | |
FontAttributes="Bold" | |
FontSize="14" | |
HorizontalOptions="Center" | |
Text="{Binding Weather.Humidity,StringFormat='{0}%'}" | |
TextColor="Black" /> | |
<Label | |
FontSize="11" | |
HorizontalOptions="Center" | |
Text="Humidity" | |
TextColor="#7D7D7D" /> | |
</StackLayout> | |
</StackLayout> | |
<StackLayout | |
Grid.Column="1" | |
HorizontalOptions="CenterAndExpand" | |
Orientation="Vertical" | |
Spacing="10"> | |
<Image Source="wind.png" HeightRequest="30" /> | |
<StackLayout HorizontalOptions="CenterAndExpand" Spacing="7"> | |
<Label | |
FontAttributes="Bold" | |
FontSize="14" | |
HorizontalOptions="Center" | |
Text="{Binding Weather.WindSpeed,StringFormat='{0} mph'}" | |
TextColor="Black" /> | |
<Label | |
FontSize="11" | |
HorizontalOptions="Center" | |
Text="Wind" | |
TextColor="#7D7D7D" /> | |
</StackLayout> | |
</StackLayout> | |
<StackLayout | |
Grid.Column="2" | |
HorizontalOptions="CenterAndExpand" | |
Orientation="Vertical" | |
Spacing="10"> | |
<Image Source="pressure.png" HeightRequest="30" /> | |
<StackLayout HorizontalOptions="CenterAndExpand" Spacing="7"> | |
<Label | |
FontAttributes="Bold" | |
FontSize="13" | |
HorizontalOptions="Center" | |
Text="{Binding Weather.Altimeter,StringFormat='{0} hpa'}" | |
TextColor="Black" /> | |
<Label | |
FontSize="11" | |
HorizontalOptions="Center" | |
Text="Pressure" | |
TextColor="#7D7D7D" /> | |
</StackLayout> | |
</StackLayout> | |
<StackLayout | |
Grid.Column="3" | |
HorizontalOptions="CenterAndExpand" | |
Orientation="Vertical" | |
Spacing="10"> | |
<Image Source="cloudiness.png" HeightRequest="30" /> | |
<StackLayout HorizontalOptions="CenterAndExpand" Spacing="7"> | |
<Label | |
FontAttributes="Bold" | |
FontSize="13" | |
HorizontalOptions="Center" | |
Text="{Binding Weather.Phrase}" | |
TextColor="Black" /> | |
<Label | |
Margin="2" | |
FontSize="11" | |
HorizontalOptions="Center" | |
Text="Cloudiness" | |
TextColor="#7D7D7D" /> | |
</StackLayout> | |
</StackLayout> | |
</Grid> | |
</Frame> | |
<StackLayout | |
Grid.Row="2" | |
Margin="100,40,0,60" | |
Orientation="Vertical" | |
Spacing="20"> | |
<StackLayout Orientation="Horizontal" Spacing="40"> | |
<Label | |
FontAttributes="Bold" | |
FontSize="Small" | |
Text="Time of Sunrise" | |
TextColor="Black" | |
VerticalOptions="Center" /> | |
<Label | |
FontSize="15" | |
Text="{Binding Weather.Sunrise}" | |
TextColor="Black" | |
VerticalOptions="Center" /> | |
</StackLayout> | |
<StackLayout Orientation="Horizontal" Spacing="40"> | |
<Label | |
FontAttributes="Bold" | |
FontSize="Small" | |
Text="Time of Sunset" | |
TextColor="Black" | |
VerticalOptions="Center" /> | |
<Label | |
Margin="5" | |
FontSize="15" | |
Text="{Binding Weather.Sunset}" | |
TextColor="Black" | |
VerticalOptions="Center" /> | |
</StackLayout> | |
</StackLayout> | |
<StackLayout | |
Grid.Row="3" | |
Margin="15,-10,0,0" | |
Orientation="Horizontal"> | |
<Entry | |
x:Name="_cityEntry" | |
Margin="5,0" | |
BackgroundColor="#CCCCCC" | |
CharacterSpacing="0" | |
HeightRequest="35" | |
HorizontalTextAlignment="Center" | |
Text="Coventry" | |
FontAttributes="Bold" | |
TextColor="White" | |
VerticalOptions="Center" | |
Placeholder="enter the city" | |
WidthRequest="200" /> | |
<Button | |
BackgroundColor="#2b55b0" | |
BorderColor="White" | |
BorderWidth="1" | |
HeightRequest="35" | |
Clicked="OnGetWeatherButtonClicked" | |
Text="{Binding Title}" | |
IsEnabled="{Binding IsEnabled}" | |
TextColor="White" /> | |
</StackLayout> | |
</Grid> | |
</ContentPage> |