This commit is contained in:
2026-03-19 13:14:53 +02:00
parent 9ce8e190a2
commit 7fde404b5a
10 changed files with 167 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="ModuleWeather.WeatherView">
<StackPanel Margin="20" Spacing="10" Background="#2b2b2b">
<TextBlock Name="StatusText" Text="Введите город:" Foreground="White"/>
<TextBox Name="CityInput" Watermark="Например: Москва"/>
<Button Content="Узнать погоду" Click="GetWeatherButton_Click"
HorizontalAlignment="Stretch" HorizontalContentAlignment="Center"/>
</StackPanel>
</UserControl>