Skip to content

Commit 9ad9736

Browse files
v28.2.3
1 parent e9a74ad commit 9ad9736

5,037 files changed

Lines changed: 1530256 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
.vs/
2+
.vscode/
3+
node_modules/
4+
package-lock.json/
5+
sitemap-demos.xml/
6+
/Common/*.sln
7+
/Common/*.sln
8+
/Common/*.user
9+
/Common/wwwroot/scripts/**/*.txt
10+
/Common/wwwroot/scripts/**/*.min.js
11+
/Common/wwwroot/styles/**/*.min.css
12+
/**/wwwroot/*.min.js
13+
/**/*.user
14+
/**/**/bin
15+
/**/**/.vs
16+
/**/**/.vscode
17+
/**/**/obj
18+
/**/bin
19+
/**/.vs
20+
/**/.vscode
21+
/**/obj
22+
/**/node_modules
23+
/**/package-lock.json
24+
AxeReport/
25+
publish/
26+
./sitemap-demos.xml

Blazor-MAUI-Demos/App.xaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4+
xmlns:local="clr-namespace:Blazor_MAUI_Demos"
5+
x:Class="Blazor_MAUI_Demos.App">
6+
<Application.Resources>
7+
<ResourceDictionary>
8+
9+
<Color x:Key="PageBackgroundColor">#512bdf</Color>
10+
<Color x:Key="PrimaryTextColor">White</Color>
11+
12+
<Style TargetType="Label">
13+
<Setter Property="TextColor" Value="{DynamicResource PrimaryTextColor}" />
14+
<Setter Property="FontFamily" Value="OpenSansRegular" />
15+
</Style>
16+
17+
<Style TargetType="Button">
18+
<Setter Property="TextColor" Value="{DynamicResource PrimaryTextColor}" />
19+
<Setter Property="FontFamily" Value="OpenSansRegular" />
20+
<Setter Property="BackgroundColor" Value="#2b0b98" />
21+
<Setter Property="Padding" Value="14,10" />
22+
</Style>
23+
24+
</ResourceDictionary>
25+
</Application.Resources>
26+
</Application>

Blazor-MAUI-Demos/App.xaml.cs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#region Copyright Syncfusion® Inc. 2001-2025.
2+
// Copyright Syncfusion® Inc. 2001-2025. All rights reserved.
3+
// Use of this code is subject to the terms of our license.
4+
// A copy of the current license can be obtained at any time by e-mailing
5+
// licensing@syncfusion.com. Any infringement will be prosecuted under
6+
// applicable laws.
7+
#endregion
8+
namespace Blazor_MAUI_Demos;
9+
10+
public partial class App : Application
11+
{
12+
public App()
13+
{
14+
InitializeComponent();
15+
16+
MainPage = new MainPage();
17+
}
18+
}
Lines changed: 177 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,177 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Razor">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net8.0-android;net8.0-ios</TargetFrameworks>
5+
<!-- <TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks> -->
6+
<!-- <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks> -->
7+
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
8+
<!-- <TargetFrameworks>$(TargetFrameworks);net8.0-tizen</TargetFrameworks> -->
9+
<OutputType>Exe</OutputType>
10+
<RootNamespace>Blazor_MAUI_Demos</RootNamespace>
11+
<UseMaui>true</UseMaui>
12+
<SingleProject>true</SingleProject>
13+
<ImplicitUsings>enable</ImplicitUsings>
14+
<DefineConstants>NET8_MAUI;MAUI</DefineConstants>
15+
16+
<!-- Display name -->
17+
<ApplicationTitle>Blazor MAUI Demos</ApplicationTitle>
18+
19+
<!-- App Identifier -->
20+
<ApplicationId>com.syncfusion.blazor_maui_demos</ApplicationId>
21+
<ApplicationIdGuid>8dbb3e6d-c5ae-45f1-ac83-b92cab89db60</ApplicationIdGuid>
22+
23+
<!-- Versions -->
24+
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
25+
<ApplicationVersion>1</ApplicationVersion>
26+
27+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
28+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
29+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">24.0</SupportedOSPlatformVersion>
30+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
31+
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
32+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
33+
34+
<AndroidApplication>True</AndroidApplication>
35+
<AndroidPackageFormat>apk</AndroidPackageFormat>
36+
<AndroidUseAapt2>True</AndroidUseAapt2>
37+
<AndroidCreatePackagePerAbi>true</AndroidCreatePackagePerAbi>
38+
</PropertyGroup>
39+
<PropertyGroup Condition="$(TargetFramework.Contains('-ios')) and '$(Configuration)' == 'Release'">
40+
<UseInterpreter>true</UseInterpreter>
41+
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
43+
<RunAOTCompilation>False</RunAOTCompilation>
44+
<PublishTrimmed>False</PublishTrimmed>
45+
</PropertyGroup>
46+
<ItemGroup Condition="$(TargetFramework.Contains('-ios'))">
47+
<Content Remove="NuGet.config" />
48+
</ItemGroup>
49+
<ItemGroup>
50+
<!-- App Icon -->
51+
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
52+
53+
<!-- Splash Screen -->
54+
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />
55+
56+
<!-- Images -->
57+
<MauiImage Include="Resources\Images\*" />
58+
<MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" />
59+
60+
<!-- Custom Fonts -->
61+
<MauiFont Include="Resources\Fonts\*" />
62+
63+
<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
64+
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
65+
</ItemGroup>
66+
67+
<ItemGroup>
68+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
69+
<PackageReference Include="Microsoft.Extensions.Localization" Version="8.0.0" />
70+
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
71+
<PackageReference Include="Markdig" Version="0.23.0" />
72+
<PackageReference Include="Blazored.FluentValidation" Version="2.2.0" />
73+
<PackageReference Include="Syncfusion.Blazor.Themes" Version="28.2.3" />
74+
<PackageReference Include="Syncfusion.Blazor.Buttons" Version="28.2.3" />
75+
<PackageReference Include="Syncfusion.Blazor.DataForm" Version="28.2.3" />
76+
<PackageReference Include="Syncfusion.Blazor.Cards" Version="28.2.3" />
77+
<PackageReference Include="Syncfusion.Blazor.Spinner" Version="28.2.3" />
78+
<PackageReference Include="Syncfusion.Blazor.BarcodeGenerator" Version="28.2.3" />
79+
<PackageReference Include="Syncfusion.Blazor.CircularGauge" Version="28.2.3" />
80+
<PackageReference Include="Syncfusion.Blazor.LinearGauge" Version="28.2.3" />
81+
<PackageReference Include="Syncfusion.Blazor.Notifications" Version="28.2.3" />
82+
<PackageReference Include="Syncfusion.Blazor.Popups" Version="28.2.3" />
83+
<PackageReference Include="Syncfusion.Blazor.SplitButtons" Version="28.2.3" />
84+
<PackageReference Include="Syncfusion.Blazor.Layouts" Version="28.2.3" />
85+
<PackageReference Include="Syncfusion.Blazor.Inputs" Version="28.2.3" />
86+
<PackageReference Include="Syncfusion.Blazor.Calendars" Version="28.2.3" />
87+
<PackageReference Include="Syncfusion.Blazor.Navigations" Version="28.2.3" />
88+
<PackageReference Include="Syncfusion.Blazor.Diagram" Version="28.2.3" />
89+
<PackageReference Include="Syncfusion.Blazor.DropDowns" Version="28.2.3" />
90+
<PackageReference Include="Syncfusion.Blazor.RichTextEditor" Version="28.2.3" />
91+
<PackageReference Include="Syncfusion.Blazor.ImageEditor" Version="28.2.3" />
92+
<PackageReference Include="Syncfusion.Blazor.QueryBuilder" Version="28.2.3" />
93+
<PackageReference Include="Syncfusion.Blazor.Schedule" Version="28.2.3" />
94+
<PackageReference Include="Syncfusion.Blazor.Kanban" Version="28.2.3" />
95+
<PackageReference Include="Syncfusion.Blazor.Grid" Version="28.2.3" />
96+
<PackageReference Include="Syncfusion.Blazor.TreeGrid" Version="28.2.3" />
97+
<PackageReference Include="Syncfusion.Blazor.Gantt" Version="28.2.3" />
98+
<PackageReference Include="Syncfusion.Blazor.TreeMap" Version="28.2.3" />
99+
<PackageReference Include="Syncfusion.Blazor.FileManager" Version="28.2.3" />
100+
<PackageReference Include="Syncfusion.Blazor.HeatMap" Version="28.2.3" />
101+
<PackageReference Include="Syncfusion.Blazor.InPlaceEditor" Version="28.2.3" />
102+
<PackageReference Include="Syncfusion.Blazor.Maps" Version="28.2.3" />
103+
<PackageReference Include="Syncfusion.Blazor.ProgressBar" Version="28.2.3" />
104+
<PackageReference Include="Syncfusion.Blazor.Charts" Version="28.2.3" />
105+
<PackageReference Include="Syncfusion.Blazor.RangeNavigator" Version="28.2.3" />
106+
<PackageReference Include="Syncfusion.Blazor.StockChart" Version="28.2.3" />
107+
<PackageReference Include="Syncfusion.Blazor.BulletChart" Version="28.2.3" />
108+
<PackageReference Include="Syncfusion.Blazor.SmithChart" Version="28.2.3" />
109+
<PackageReference Include="Syncfusion.Blazor.Sparkline" Version="28.2.3" />
110+
<PackageReference Include="Syncfusion.Blazor.WordProcessor" Version="28.2.3" />
111+
<PackageReference Include="Syncfusion.Blazor.SfPdfViewer" Version="28.2.3" />
112+
<PackageReference Include="Syncfusion.Blazor.PivotTable" Version="28.2.3" />
113+
<PackageReference Include="Syncfusion.Blazor.Chart3D" Version="28.2.3" />
114+
<PackageReference Include="Syncfusion.Licensing" Version="28.2.3" />
115+
<PackageReference Include="Syncfusion.Presentation.Net.Core" Version="28.2.3" />
116+
<PackageReference Include="Syncfusion.PresentationRenderer.Net.Core" Version="28.2.3" />
117+
<PackageReference Include="Syncfusion.DocIO.Net.Core" Version="28.2.3" />
118+
<PackageReference Include="Syncfusion.DocIORenderer.Net.Core" Version="28.2.3" />
119+
<PackageReference Include="Syncfusion.Pdf.Imaging.Net.Core" Version="28.2.3" />
120+
<PackageReference Include="Syncfusion.MetafileRenderer.NET" Version="28.2.3" />
121+
<PackageReference Include="Syncfusion.XlsIO.Net.Core" Version="28.2.3" />
122+
<PackageReference Include="Syncfusion.XlsIORenderer.Net.Core" Version="28.2.3" />
123+
<PackageReference Include="Syncfusion.Pdf.Net.Core" Version="28.2.3" />
124+
</ItemGroup>
125+
126+
<ItemGroup>
127+
<None Include="Pages\**" CopyToOutputDirectory="Always" />
128+
</ItemGroup>
129+
130+
<ItemGroup>
131+
<Content Remove="Pages\DiagramComponent\DiagramComponent\KeyboardInteraction.razor" />
132+
<Content Remove="Pages\DiagramComponent\DiagramComponent\PrintSample.razor" />
133+
<Content Remove="Pages\DocumentEditor\**" />
134+
</ItemGroup>
135+
136+
<ItemGroup>
137+
<None Remove="Pages\DiagramComponent\DiagramComponent\KeyboardInteraction.razor" />
138+
<None Remove="Pages\DiagramComponent\DiagramComponent\PrintSample.razor" />
139+
<None Remove="Pages\DocumentEditor\**" />
140+
</ItemGroup>
141+
142+
<ItemGroup>
143+
<Folder Include="wwwroot\data\pdfviewer2" />
144+
</ItemGroup>
145+
146+
<ItemGroup>
147+
<EmbeddedResource Include="wwwroot\data\rangenavigator\default-data.json" />
148+
<EmbeddedResource Include="wwwroot\data\rangenavigator\axes-data.json" />
149+
<EmbeddedResource Include="wwwroot\data\rangenavigator\chart-data.json" />
150+
<EmbeddedResource Include="wwwroot\data\rangenavigator\double-data-aus.json" />
151+
<EmbeddedResource Include="wwwroot\data\rangenavigator\double-data-sl.json" />
152+
<EmbeddedResource Include="wwwroot\data\rangenavigator\employee-data.json" />
153+
<EmbeddedResource Include="wwwroot\data\rangenavigator\export-data.json" />
154+
<EmbeddedResource Include="wwwroot\data\rangenavigator\financial-data.json" />
155+
<EmbeddedResource Include="wwwroot\data\rangenavigator\period-data.json" />
156+
<EmbeddedResource Include="wwwroot\data\rangenavigator\stock-data.json" />
157+
<EmbeddedResource Include="wwwroot\data\stockchart\aapl.json" />
158+
<EmbeddedResource Include="wwwroot\data\stockchart\amzn.json" />
159+
<EmbeddedResource Include="wwwroot\data\stockchart\chart-data.json" />
160+
<EmbeddedResource Include="wwwroot\data\stockchart\financial-stock-chart-data.json" />
161+
<EmbeddedResource Include="wwwroot\data\stockchart\goog.json" />
162+
<EmbeddedResource Include="wwwroot\data\stockchart\googl.json" />
163+
<EmbeddedResource Include="wwwroot\data\chart\annotation-data.json" />
164+
<EmbeddedResource Include="wwwroot\data\chart\financial-data.json" />
165+
<EmbeddedResource Include="wwwroot\data\chart\rainfall-data.json" />
166+
<EmbeddedResource Include="wwwroot\data\chart\range-data.json" />
167+
<EmbeddedResource Include="wwwroot\data\chart\stock-chart-data.json" />
168+
<EmbeddedResource Include="wwwroot\data\chart\synchronized-data.json" />
169+
<EmbeddedResource Include="wwwroot\data\pdfviewer2\pdf-succinctly.pdf" />
170+
<EmbeddedResource Include="wwwroot\data\pdfviewer2\hive-succinctly.pdf" />
171+
<EmbeddedResource Include="wwwroot\data\pdfviewer2\invisible-digital-signature.pdf" />
172+
<EmbeddedResource Include="wwwroot\data\pdfviewer2\form-filling-document.pdf" />
173+
<EmbeddedResource Include="wwwroot\data\pdfviewer2\hand-written-signature.pdf" />
174+
<EmbeddedResource Include="wwwroot\data\pdfviewer2\annotations.pdf" />
175+
</ItemGroup>
176+
177+
</Project>

0 commit comments

Comments
 (0)