second
This commit is contained in:
parent
a805d32f0e
commit
883d1b0a70
221
MainPage.xaml
221
MainPage.xaml
@ -2,15 +2,19 @@
|
|||||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
x:Class="MyDiplom.MainPage">
|
x:Class="MyDiplom.MainPage">
|
||||||
|
|
||||||
<Grid>
|
<Grid>
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="80"/>
|
<RowDefinition Height="80"/>
|
||||||
<RowDefinition/>
|
<RowDefinition Height="355"/>
|
||||||
|
<RowDefinition Height="*"/>
|
||||||
|
<RowDefinition Height="100"/>
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="250"/>
|
<ColumnDefinition Width="260"/>
|
||||||
<ColumnDefinition Width="*"/>
|
<ColumnDefinition Width="*"/>
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
|
|
||||||
<StackLayout Grid.ColumnSpan="2" Orientation="Horizontal" Padding="10"
|
<StackLayout Grid.ColumnSpan="2" Orientation="Horizontal" Padding="10"
|
||||||
Background="black" HeightRequest="80"
|
Background="black" HeightRequest="80"
|
||||||
|
|
||||||
@ -25,8 +29,15 @@
|
|||||||
HorizontalOptions="EndAndExpand"/>
|
HorizontalOptions="EndAndExpand"/>
|
||||||
|
|
||||||
</StackLayout>
|
</StackLayout>
|
||||||
<StackLayout Background="LightGray" Grid.Row="1" WidthRequest="250"
|
|
||||||
Padding="20">
|
<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">
|
||||||
|
|
||||||
<Button Text="Главная" TextColor="Black"
|
<Button Text="Главная" TextColor="Black"
|
||||||
BackgroundColor="Transparent"/>
|
BackgroundColor="Transparent"/>
|
||||||
<Button Text="Личный кабинет" TextColor="Black"
|
<Button Text="Личный кабинет" TextColor="Black"
|
||||||
@ -41,17 +52,55 @@
|
|||||||
BackgroundColor="Transparent"/>
|
BackgroundColor="Transparent"/>
|
||||||
<Button Text="О ботах" TextColor="Black"
|
<Button Text="О ботах" TextColor="Black"
|
||||||
BackgroundColor="Transparent"/>
|
BackgroundColor="Transparent"/>
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
</StackLayout>
|
</StackLayout>
|
||||||
|
|
||||||
<VerticalStackLayout Grid.Row="1" Grid.Column="1">
|
<StackLayout Grid.Row="1" Grid.Column="1">
|
||||||
<Label Text="TG FREELANCE МЕНЕДЖЕР" FontSize="100" HeightRequest="115" HorizontalOptions="Center"/>
|
<Label Text="TG FREELANCE МЕНЕДЖЕР" FontSize="100" HeightRequest="115" HorizontalOptions="Start"/>
|
||||||
<Grid>
|
<Grid>
|
||||||
|
|
||||||
|
<Border>
|
||||||
|
<Border.StrokeShape>
|
||||||
|
<RoundRectangle CornerRadius="25"/>
|
||||||
|
</Border.StrokeShape>
|
||||||
|
|
||||||
<VerticalStackLayout Background="Aqua" HeightRequest="235" >
|
<VerticalStackLayout Background="Aqua" HeightRequest="235" >
|
||||||
|
|
||||||
<StackLayout>
|
<StackLayout>
|
||||||
<Label Text="Выберите фриланс биржу, с которой хотите работать:" FontSize="45" Padding="1" />
|
<Label Text="Выберите фриланс биржу, с которой хотите работать:" FontSize="45" Padding="1" />
|
||||||
</StackLayout>
|
</StackLayout>
|
||||||
@ -85,11 +134,19 @@
|
|||||||
|
|
||||||
|
|
||||||
</VerticalStackLayout>
|
</VerticalStackLayout>
|
||||||
|
</Border>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<ScrollView Grid.Row="2" Grid.Column="1">
|
||||||
|
<VerticalStackLayout >
|
||||||
|
<Grid>
|
||||||
|
|
||||||
<Label Text="Выберите подходящую категорию:" FontSize="18" />
|
<Border >
|
||||||
<Grid Padding="10,10,0,0">
|
<Border.StrokeShape>
|
||||||
|
<RoundRectangle CornerRadius="25"/>
|
||||||
|
</Border.StrokeShape>
|
||||||
|
<Grid>
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
@ -99,14 +156,142 @@
|
|||||||
<ColumnDefinition Width="*"/>
|
<ColumnDefinition Width="*"/>
|
||||||
<ColumnDefinition Width="*"/>
|
<ColumnDefinition Width="*"/>
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
|
<VerticalStackLayout Grid.ColumnSpan="2" Margin="10" >
|
||||||
<CheckBox Grid.Row="0" Grid.Column="0" />
|
<Label Text="Выберите подходящую категорию:" FontSize="18" />
|
||||||
<Label Text="Категория 1" Grid.Row="0" Grid.Column="1"/>
|
<StackLayout Orientation="Horizontal" Spacing="10" >
|
||||||
<CheckBox Grid.Row="1" Grid.Column="0" />
|
<Button Text="Выделить всё" WidthRequest="130" TextColor="Black" Background="LightGray" />
|
||||||
<Label Text="Категория 2" Grid.Row="1" Grid.Column="1"/>
|
<Button Text="Очистить" WidthRequest="130" TextColor="Black" Background="LightPink" />
|
||||||
<CheckBox Grid.Row="2" Grid.Column="0" />
|
</StackLayout>
|
||||||
<Label Text="Категория 3" Grid.Row="3" Grid.Column="1"/>
|
|
||||||
</Grid>
|
|
||||||
</VerticalStackLayout>
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
</Border>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</ScrollView>
|
||||||
|
|
||||||
|
<StackLayout Grid.Row="3" Background="Black" Grid.ColumnSpan="2">
|
||||||
|
|
||||||
|
</StackLayout>
|
||||||
</Grid>
|
</Grid>
|
||||||
</ContentPage>
|
</ContentPage>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user