Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CheckBox/CheckBox.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks>
<TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.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 -->
<!-- <TargetFrameworks>$(TargetFrameworks);net8.0-tizen</TargetFrameworks> -->

Expand Down Expand Up @@ -59,7 +59,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0" />
<PackageReference Include="Syncfusion.Maui.Buttons" Version="*" />
</ItemGroup>

Expand Down
12 changes: 6 additions & 6 deletions CheckBox/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@


<StackLayout>
<syncfusion:SfCheckBox x:Name="checkBox" LineBreakMode="CharacterWrap" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
<syncfusion:SfCheckBox x:Name="checkBox" LineBreakMode="HeadTruncation" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
<syncfusion:SfCheckBox x:Name="checkBox" LineBreakMode="TailTruncation" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
<syncfusion:SfCheckBox x:Name="checkBox" LineBreakMode="MiddleTruncation" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
<syncfusion:SfCheckBox x:Name="checkBox" LineBreakMode="NoWrap" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
<syncfusion:SfCheckBox x:Name="checkBox" LineBreakMode="WordWrap" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
<syncfusion:SfCheckBox x:Name="checkBox1" LineBreakMode="CharacterWrap" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
<syncfusion:SfCheckBox x:Name="checkBox2" LineBreakMode="HeadTruncation" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
<syncfusion:SfCheckBox x:Name="checkBox3" LineBreakMode="TailTruncation" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
<syncfusion:SfCheckBox x:Name="checkBox4" LineBreakMode="MiddleTruncation" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
<syncfusion:SfCheckBox x:Name="checkBox5" LineBreakMode="NoWrap" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
<syncfusion:SfCheckBox x:Name="checkBox6" LineBreakMode="WordWrap" WidthRequest="200" HeightRequest="50" Text="The LineBreakMode allows you to wrap or truncate the text. The default value of this property is NoWrap. The following other options are available in LineBreakMode"/>
</StackLayout>
</ContentPage>