thomas muzard 2 years ago
commit 9c78eafd5b

Binary file not shown.

Before

Width:  |  Height:  |  Size: 168 KiB

File diff suppressed because it is too large Load Diff

@ -43,8 +43,8 @@
<Grid Grid.Column="1"> <Grid Grid.Column="1">
<!-- Création de 2 lignes --> <!-- Création de 2 lignes -->
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition Height="1*"/> <RowDefinition Height="100"/>
<RowDefinition Height="8*"/> <RowDefinition Height="800"/>
</Grid.RowDefinitions> </Grid.RowDefinitions>
<!-- 1er ligne --> <!-- 1er ligne -->
@ -61,7 +61,7 @@
<!-- 2e ligne --> <!-- 2e ligne -->
<Grid Grid.Row="1"> <Grid Grid.Row="1">
<ContentView> <ContentView>
<ajout:Ajouts_Pari/> <pari:Parier/>
</ContentView> </ContentView>
</Grid> </Grid>
</Grid> </Grid>

@ -1,111 +1,109 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PropertyGroup> <TargetFrameworks>net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks>
<TargetFrameworks>net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks> <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks> <!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET --> <!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> -->
<!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> --> <!--<RuntimeIdentifiers>maccatalyst-arm64</RuntimeIdentifiers>-->
<!--<RuntimeIdentifiers>maccatalyst-arm64</RuntimeIdentifiers>--> <OutputType>Exe</OutputType>
<OutputType>Exe</OutputType> <RootNamespace>ParionsCuite</RootNamespace>
<RootNamespace>ParionsCuite</RootNamespace> <UseMaui>true</UseMaui>
<UseMaui>true</UseMaui> <SingleProject>true</SingleProject>
<SingleProject>true</SingleProject> <ImplicitUsings>enable</ImplicitUsings>
<ImplicitUsings>enable</ImplicitUsings> <!-- Display name -->
<ApplicationTitle>ParionsCuite</ApplicationTitle>
<!-- Display name --> <!-- App Identifier -->
<ApplicationTitle>ParionsCuite</ApplicationTitle> <ApplicationId>com.companyname.parionscuite</ApplicationId>
<ApplicationIdGuid>be941c7a-90b1-469a-aa20-94c786120159</ApplicationIdGuid>
<!-- App Identifier --> <!-- Versions -->
<ApplicationId>com.companyname.parionscuite</ApplicationId> <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationIdGuid>be941c7a-90b1-469a-aa20-94c786120159</ApplicationIdGuid> <ApplicationVersion>1</ApplicationVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
<!-- Versions --> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<ApplicationVersion>1</ApplicationVersion> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion> </PropertyGroup>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion> <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-ios|AnyCPU'">
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> <CreatePackage>false</CreatePackage>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> </PropertyGroup>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0-ios|AnyCPU'">
</PropertyGroup> <CreatePackage>false</CreatePackage>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-ios|AnyCPU'"> <ItemGroup>
<CreatePackage>false</CreatePackage> <!-- App Icon -->
</PropertyGroup> <MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0-ios|AnyCPU'"> <!-- Splash Screen -->
<CreatePackage>false</CreatePackage> <MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />
</PropertyGroup> <!-- Images -->
<ItemGroup> <MauiImage Include="Resources\Images\*" />
<!-- App Icon --> <MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" />
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> <!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*" />
<!-- Splash Screen --> <!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" /> <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>
<!-- Images --> <ItemGroup>
<MauiImage Include="Resources\Images\*" /> <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" />
<MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" /> </ItemGroup>
<ItemGroup>
<!-- Custom Fonts --> <MauiXaml Update="Views\Accueil.xaml">
<MauiFont Include="Resources\Fonts\*" /> <Generator>MSBuild:Compile</Generator>
</MauiXaml>
<!-- Raw Assets (also remove the "Resources\Raw" prefix) --> <MauiXaml Update="Views\Groupe.xaml">
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> <Generator>MSBuild:Compile</Generator>
</ItemGroup> </MauiXaml>
<ItemGroup> <MauiXaml Update="Views\Information\Info.xaml">
<Compile Remove="Test\**" /> <Generator>MSBuild:Compile</Generator>
<EmbeddedResource Remove="Test\**" /> </MauiXaml>
<MauiCss Remove="Test\**" /> <MauiXaml Update="Views\Invite\Inviter.xaml">
<MauiXaml Remove="Test\**" /> <Generator>MSBuild:Compile</Generator>
<None Remove="Test\**" /> </MauiXaml>
</ItemGroup> <MauiXaml Update="Views\Pari\Parier.xaml">
<Generator>MSBuild:Compile</Generator>
<ItemGroup> </MauiXaml>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" /> </ItemGroup>
</ItemGroup> <ItemGroup>
<None Remove="Resources\Images\fleches.png" />
<ItemGroup> <None Remove="Views\Ajout_Paris\" />
<MauiXaml Update="Views\Accueil.xaml"> <None Remove="Views\Participations\" />
<Generator>MSBuild:Compile</Generator> <None Remove="Views\Participations\Autre\" />
</MauiXaml> <None Remove="Views\Participations\Boisson\" />
<MauiXaml Update="Views\Groupe.xaml"> <None Remove="Modeles\" />
<Generator>MSBuild:Compile</Generator> <None Remove="Stub\" />
</MauiXaml> <None Remove="Test\" />
<MauiXaml Update="Views\Information\Info.xaml"> </ItemGroup>
<Generator>MSBuild:Compile</Generator> <ItemGroup>
</MauiXaml> <BundleResource Include="Resources\Images\fleches.png" />
<MauiXaml Update="Views\Invite\Inviter.xaml"> </ItemGroup>
<Generator>MSBuild:Compile</Generator> <ItemGroup>
</MauiXaml> <EmbeddedResource Include="Resources\Images\fleches.png" />
<MauiXaml Update="Views\Pari\Parier.xaml"> </ItemGroup>
<Generator>MSBuild:Compile</Generator> <ItemGroup>
</MauiXaml> <Folder Include="Views\Ajout_Paris\" />
</ItemGroup> <Folder Include="Views\Participations\" />
<Folder Include="Views\Participations\Autre\" />
<ItemGroup> <Folder Include="Views\Participations\Boisson\" />
<None Remove="Resources\Images\fleches.png" /> <Folder Include="Modeles\" />
<None Remove="Views\Ajout_Paris\" /> <Folder Include="Stub\" />
<None Remove="Views\Participations\" /> </ItemGroup>
<None Remove="Views\Participations\Autre\" /> <ItemGroup />
<None Remove="Views\Participations\Boisson\" /> <ItemGroup Condition="$(VisualStudioVersion) == '17.0'">
<None Remove="Modeles\" /> <Reference Include="Microsoft.Data.Tools.Schema.Sql, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<None Remove="Stub\" /> <HintPath>$(SSDTPath)\Microsoft.Data.Tools.Schema.Sql.dll</HintPath>
<None Remove="Test\" /> <Private>True</Private>
</ItemGroup> </Reference>
<ItemGroup> <Reference Include="Microsoft.Data.Tools.Schema.Sql.UnitTesting, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<BundleResource Include="Resources\Images\fleches.png" /> <HintPath>$(SSDTUnitTestPath)\Microsoft.Data.Tools.Schema.Sql.UnitTesting.dll</HintPath>
</ItemGroup> <Private>True</Private>
<ItemGroup> </Reference>
<EmbeddedResource Include="Resources\Images\fleches.png" /> <Reference Include="Microsoft.Data.Tools.Schema.Sql.UnitTestingAdapter, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
</ItemGroup> <HintPath>$(SSDTUnitTestPath)\Microsoft.Data.Tools.Schema.Sql.UnitTestingAdapter.dll</HintPath>
<ItemGroup> <Private>True</Private>
<Folder Include="Views\Ajout_Paris\" /> </Reference>
<Folder Include="Views\Participations\" /> </ItemGroup>
<Folder Include="Views\Participations\Autre\" /> <PropertyGroup>
<Folder Include="Views\Participations\Boisson\" /> <SsdtUnitTestVersion>3.1</SsdtUnitTestVersion>
<Folder Include="Modeles\" /> </PropertyGroup>
<Folder Include="Stub\" />
</ItemGroup>
</Project> </Project>

@ -5,7 +5,7 @@
<VerticalStackLayout> <VerticalStackLayout>
<!--Ajout Parieur--> <!--Ajout Parieur-->
<Grid Margin="20" ColumnDefinitions="5*,*,5*,*" RowDefinitions="*,*"> <Grid Margin="5" ColumnDefinitions="5*,*,5*,*" RowDefinitions="*,*">
<Label Text="Parieur(s) 1 :" FontSize="Title" HorizontalOptions="Center"/> <Label Text="Parieur(s) 1 :" FontSize="Title" HorizontalOptions="Center"/>
<Label Grid.Column="2" Text="Parieur(s) 2 :" FontSize="Title" HorizontalOptions="End"/> <Label Grid.Column="2" Text="Parieur(s) 2 :" FontSize="Title" HorizontalOptions="End"/>

Loading…
Cancel
Save