parent
896d41b04a
commit
146b6ae423
Binary file not shown.
Binary file not shown.
@ -1,4 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup />
|
||||
<PropertyGroup>
|
||||
<IsFirstTimeProjectOpen>False</IsFirstTimeProjectOpen>
|
||||
<ActiveDebugFramework>net6.0-windows10.0.19041.0</ActiveDebugFramework>
|
||||
<ActiveDebugProfile>Windows Machine</ActiveDebugProfile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<MauiXaml Update="Views\PageAccueil.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</MauiXaml>
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -1,41 +0,0 @@
|
||||
<?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="GameAtlas.MainPage">
|
||||
|
||||
<ScrollView>
|
||||
<VerticalStackLayout
|
||||
Spacing="25"
|
||||
Padding="30,0"
|
||||
VerticalOptions="Center">
|
||||
|
||||
<Image
|
||||
Source="dotnet_bot.png"
|
||||
SemanticProperties.Description="Cute dot net bot waving hi to you!"
|
||||
HeightRequest="200"
|
||||
HorizontalOptions="Center" />
|
||||
|
||||
<Label
|
||||
Text="Hello, World!"
|
||||
SemanticProperties.HeadingLevel="Level1"
|
||||
FontSize="32"
|
||||
HorizontalOptions="Center" />
|
||||
|
||||
<Label
|
||||
Text="Welcome to .NET Multi-platform App UI"
|
||||
SemanticProperties.HeadingLevel="Level2"
|
||||
SemanticProperties.Description="Welcome to dot net Multi platform App U I"
|
||||
FontSize="18"
|
||||
HorizontalOptions="Center" />
|
||||
|
||||
<Button
|
||||
x:Name="CounterBtn"
|
||||
Text="Click me"
|
||||
SemanticProperties.Hint="Counts the number of times you click"
|
||||
Clicked="OnCounterClicked"
|
||||
HorizontalOptions="Center" />
|
||||
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
|
||||
</ContentPage>
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,40 @@
|
||||
<?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="GameAtlas.Views.PageAccueil"
|
||||
Title="ECRAN DE CONNEXION"
|
||||
BackgroundColor="#FAD05D">
|
||||
|
||||
<VerticalStackLayout>
|
||||
<Frame Margin="40"
|
||||
BorderColor="DarkViolet"
|
||||
CornerRadius="50"
|
||||
HeightRequest="60"
|
||||
WidthRequest="60"
|
||||
IsClippedToBounds="True"
|
||||
HorizontalOptions="Center"
|
||||
VerticalOptions="Center">
|
||||
<Image Source="unknown.png"
|
||||
Aspect="AspectFill"
|
||||
Margin="-20"
|
||||
HeightRequest="60"
|
||||
WidthRequest="60"/>
|
||||
</Frame>
|
||||
|
||||
<Label Text="Hello !"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center"
|
||||
FontSize="20"
|
||||
FontAttributes="Bold,Italic"/>
|
||||
|
||||
<BoxView Margin="50"
|
||||
Color="#74B9FF"
|
||||
CornerRadius="14"
|
||||
WidthRequest="321"
|
||||
HeightRequest="333"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center"
|
||||
Opacity="0.6"/>
|
||||
|
||||
</VerticalStackLayout>
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace GameAtlas.Views;
|
||||
|
||||
public partial class PageAccueil : ContentPage
|
||||
{
|
||||
public PageAccueil()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,2 +1,3 @@
|
||||
File=Resources\Images\dotnet_bot.svg;Link=;BaseSize=168,208;Resize=;TintColor=;Color=;IsAppIcon=;ForegroundScale=;ForegroundFile=
|
||||
File=Resources\Images\unknown.png;Link=;BaseSize=;Resize=;TintColor=;Color=;IsAppIcon=;ForegroundScale=;ForegroundFile=
|
||||
File=Resources\AppIcon\appicon.svg;Link=;BaseSize=;Resize=;TintColor=;Color=#512BD4;IsAppIcon=True;ForegroundScale=;ForegroundFile=Resources\AppIcon\appiconfg.svg
|
||||
|
Loading…
Reference in new issue