2025-03-07 11:09:52 +03:00
|
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
|
x:Class="MyDiplom.MainPage">
|
2025-03-11 13:41:40 +03:00
|
|
|
|
|
2025-03-07 11:09:52 +03:00
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="80"/>
|
2025-03-11 13:41:40 +03:00
|
|
|
|
<RowDefinition Height="355"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="100"/>
|
2025-03-07 11:09:52 +03:00
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
2025-03-11 13:41:40 +03:00
|
|
|
|
<ColumnDefinition Width="260"/>
|
2025-03-07 11:09:52 +03:00
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
2025-03-11 13:41:40 +03:00
|
|
|
|
|
|
|
|
|
<StackLayout Grid.ColumnSpan="2" Orientation="Horizontal" Padding="10"
|
|
|
|
|
Background="black" HeightRequest="80"
|
2025-03-07 11:09:52 +03:00
|
|
|
|
|
|
|
|
|
HorizontalOptions="Fill" >
|
|
|
|
|
<Label Text="TgBots" TextColor="White" FontSize="40"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="StartAndExpand"/>
|
|
|
|
|
|
|
|
|
|
<Button Text="Регистироваться/Вход"
|
|
|
|
|
TextColor="White"
|
|
|
|
|
BackgroundColor="Transparent"
|
|
|
|
|
HorizontalOptions="EndAndExpand"/>
|
2025-03-11 13:41:40 +03:00
|
|
|
|
|
2025-03-07 11:09:52 +03:00
|
|
|
|
</StackLayout>
|
2025-03-11 13:41:40 +03:00
|
|
|
|
|
|
|
|
|
<StackLayout Grid.Row="1" Grid.RowSpan="4" WidthRequest="250" Spacing="5" Padding="0,5,0,0">
|
|
|
|
|
|
|
|
|
|
<Border Stroke="Gray">
|
|
|
|
|
<Border.StrokeShape>
|
|
|
|
|
<RoundRectangle CornerRadius="25"/>
|
|
|
|
|
</Border.StrokeShape>
|
|
|
|
|
<StackLayout Background="LightGray" Spacing="2">
|
|
|
|
|
|
2025-03-07 11:09:52 +03:00
|
|
|
|
<Button Text="Главная" TextColor="Black"
|
|
|
|
|
BackgroundColor="Transparent"/>
|
|
|
|
|
<Button Text="Личный кабинет" TextColor="Black"
|
|
|
|
|
BackgroundColor="Transparent" />
|
|
|
|
|
<Button Text="О нас" TextColor="Black"
|
|
|
|
|
BackgroundColor="Transparent"/>
|
|
|
|
|
<Button Text="Новости" TextColor="Black"
|
|
|
|
|
BackgroundColor="Transparent"/>
|
|
|
|
|
<Button Text="FAQ" TextColor="Black"
|
|
|
|
|
BackgroundColor="Transparent"/>
|
|
|
|
|
<Button Text="Контакты" TextColor="Black"
|
|
|
|
|
BackgroundColor="Transparent"/>
|
|
|
|
|
<Button Text="О ботах" TextColor="Black"
|
|
|
|
|
BackgroundColor="Transparent"/>
|
2025-03-11 13:41:40 +03:00
|
|
|
|
</StackLayout>
|
|
|
|
|
</Border>
|
|
|
|
|
<StackLayout Spacing="5" WidthRequest="250">
|
|
|
|
|
|
|
|
|
|
<Border Stroke="Gray">
|
|
|
|
|
<Border.StrokeShape>
|
|
|
|
|
<RoundRectangle CornerRadius="25"/>
|
|
|
|
|
</Border.StrokeShape>
|
|
|
|
|
|
|
|
|
|
<StackLayout Background="AliceBlue"
|
|
|
|
|
Spacing="2" >
|
|
|
|
|
<Label Text="Боты" HorizontalOptions="Center" Scale="2"/>
|
|
|
|
|
<Button Text="1" TextColor="Black" Background="Transparent"/>
|
|
|
|
|
<Button Text="1" TextColor="Black" Background="Transparent"/>
|
|
|
|
|
<Button Text="1" TextColor="Black" Background="Transparent"/>
|
|
|
|
|
<Button Text="1" TextColor="Black" Background="Transparent"/>
|
|
|
|
|
<Button Text="1" TextColor="Black" Background="Transparent"/>
|
|
|
|
|
<Button Text="1" TextColor="Black" Background="Transparent"/>
|
|
|
|
|
<Button Text="1" TextColor="Black" Background="Transparent"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<Border>
|
|
|
|
|
<Border.StrokeShape>
|
|
|
|
|
<RoundRectangle CornerRadius="25"/>
|
|
|
|
|
</Border.StrokeShape>
|
|
|
|
|
<StackLayout Background="Black" Grid.Row="1" WidthRequest="250" >
|
|
|
|
|
<Button Text="Помощь" Background="Transparent"/>
|
|
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</Border>
|
|
|
|
|
|
2025-03-07 11:09:52 +03:00
|
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
2025-03-11 13:41:40 +03:00
|
|
|
|
<StackLayout Grid.Row="1" Grid.Column="1">
|
|
|
|
|
<Label Text="TG FREELANCE МЕНЕДЖЕР" FontSize="100" HeightRequest="115" HorizontalOptions="Start"/>
|
|
|
|
|
<Grid>
|
2025-03-07 11:09:52 +03:00
|
|
|
|
|
2025-03-11 13:41:40 +03:00
|
|
|
|
<Border>
|
|
|
|
|
<Border.StrokeShape>
|
|
|
|
|
<RoundRectangle CornerRadius="25"/>
|
|
|
|
|
</Border.StrokeShape>
|
2025-03-07 11:09:52 +03:00
|
|
|
|
|
2025-03-11 13:41:40 +03:00
|
|
|
|
<VerticalStackLayout Background="Aqua" HeightRequest="235" >
|
2025-03-07 11:09:52 +03:00
|
|
|
|
|
2025-03-11 13:41:40 +03:00
|
|
|
|
<StackLayout>
|
|
|
|
|
<Label Text="Выберите фриланс биржу, с которой хотите работать:" FontSize="45" Padding="1" />
|
2025-03-07 11:09:52 +03:00
|
|
|
|
</StackLayout>
|
2025-03-11 13:41:40 +03:00
|
|
|
|
<StackLayout VerticalOptions="Center" >
|
|
|
|
|
<StackLayout Padding="10,0,0,0" Orientation="Horizontal" Spacing="10" >
|
|
|
|
|
<Button Text="Выделить всё" WidthRequest="130" TextColor="Black" Background="LightGray" />
|
|
|
|
|
|
|
|
|
|
<Button Text="Очистить" WidthRequest="130" TextColor="Black" Background="LightPink" />
|
|
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
<StackLayout Orientation="Horizontal" Spacing="10" Padding="10,0,0,0" >
|
|
|
|
|
<CheckBox Margin="0,0,-25,0"/>
|
|
|
|
|
<Label Text="Freelance" VerticalOptions= "Center" />
|
2025-03-07 11:09:52 +03:00
|
|
|
|
|
2025-03-11 13:41:40 +03:00
|
|
|
|
<CheckBox Margin="0,0,-25,0"/>
|
|
|
|
|
<Label Text="Freelance.habr" VerticalOptions= "Center" />
|
2025-03-07 11:09:52 +03:00
|
|
|
|
|
2025-03-11 13:41:40 +03:00
|
|
|
|
<CheckBox Margin="0,0,-25,0"/>
|
|
|
|
|
<Label Text="Weblancer" VerticalOptions= "Center" />
|
|
|
|
|
|
|
|
|
|
<CheckBox Margin="0,0,-25,0"/>
|
|
|
|
|
<Label Text="Kwork" VerticalOptions= "Center"/>
|
|
|
|
|
|
|
|
|
|
<CheckBox Margin="0,0,-25,0"/>
|
|
|
|
|
<Label Text="FL" VerticalOptions= "Center" />
|
|
|
|
|
</StackLayout>
|
2025-03-07 11:09:52 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
|
2025-03-11 13:41:40 +03:00
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
</Border>
|
|
|
|
|
</Grid>
|
|
|
|
|
</StackLayout>
|
2025-03-07 11:09:52 +03:00
|
|
|
|
|
2025-03-11 13:41:40 +03:00
|
|
|
|
<ScrollView Grid.Row="2" Grid.Column="1">
|
|
|
|
|
<VerticalStackLayout >
|
|
|
|
|
<Grid>
|
|
|
|
|
|
|
|
|
|
<Border >
|
|
|
|
|
<Border.StrokeShape>
|
|
|
|
|
<RoundRectangle CornerRadius="25"/>
|
|
|
|
|
</Border.StrokeShape>
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<VerticalStackLayout Grid.ColumnSpan="2" Margin="10" >
|
|
|
|
|
<Label Text="Выберите подходящую категорию:" FontSize="18" />
|
|
|
|
|
<StackLayout Orientation="Horizontal" Spacing="10" >
|
|
|
|
|
<Button Text="Выделить всё" WidthRequest="130" TextColor="Black" Background="LightGray" />
|
|
|
|
|
<Button Text="Очистить" WidthRequest="130" TextColor="Black" Background="LightPink" />
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<StackLayout Grid.Row="1" Margin="40,0,0,0">
|
|
|
|
|
<HorizontalStackLayout>
|
|
|
|
|
<CheckBox/>
|
|
|
|
|
<Label Text="Категория" Margin="25,15,0,0" Scale="2"/>
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<StackLayout Grid.Row="2" Margin="40,0,0,0">
|
|
|
|
|
<HorizontalStackLayout>
|
|
|
|
|
<CheckBox/>
|
|
|
|
|
<Label Text="Категория" Margin="25,15,0,0" Scale="2"/>
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<StackLayout Grid.Row="1" Grid.Column="1">
|
|
|
|
|
<HorizontalStackLayout>
|
|
|
|
|
<CheckBox/>
|
|
|
|
|
<Label Text="Категория" Margin="25,15,0,0" Scale="2"/>
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<StackLayout Grid.Row="2" Grid.Column="1">
|
|
|
|
|
<HorizontalStackLayout>
|
|
|
|
|
<CheckBox/>
|
|
|
|
|
<Label Text="Категория" Margin="25,15,0,0" Scale="2"/>
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<HorizontalStackLayout Margin="20,0,0,0">
|
|
|
|
|
<CheckBox />
|
|
|
|
|
<Label Text="Категория " Margin="-5,10,0,0" />
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
</StackLayout>
|
2025-03-07 11:09:52 +03:00
|
|
|
|
|
2025-03-11 13:41:40 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|
2025-03-07 11:09:52 +03:00
|
|
|
|
</VerticalStackLayout>
|
2025-03-11 13:41:40 +03:00
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
<StackLayout Grid.Row="3" Background="Black" Grid.ColumnSpan="2">
|
|
|
|
|
|
|
|
|
|
</StackLayout>
|
2025-03-07 11:09:52 +03:00
|
|
|
|
</Grid>
|
|
|
|
|
</ContentPage>
|