You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<Window x:Class="WeatherApp.MainWindow"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:local="clr-namespace:WeatherApp"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
Title="MainWindow" Height="40" Width="300"
|
|
|
|
|
WindowStyle="None" Topmost="True"
|
|
|
|
|
MouseLeftButtonDown="Window_MouseLeftButtonDown">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="50"/>
|
|
|
|
|
<ColumnDefinition Width="100"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
<TextBlock x:Name="tbLocation" Grid.Column="1" Text="Location" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
|
|
|
|
|
|
|
<Image x:Name="imgWeather" Grid.Column="0" Source="https://openweathermap.org/img/wn/10d@2x.png"/>
|
|
|
|
|
|
|
|
|
|
<TextBlock x:Name="tbTime" Grid.Column="2" Text="yyyy-MM-dd hh:mm:ss" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Window>
|