Skip to content

Commit bf64c51

Browse files
Merge pull request #3 from SyncfusionExamples/update-sample-version
Update latest Net 10 sample
2 parents 10a6341 + d625df6 commit bf64c51

39 files changed

+140
-97
lines changed

SunburstChartGettingStarted/Platforms/Tizen/Main.cs

Lines changed: 0 additions & 17 deletions
This file was deleted.

SunburstChartGettingStarted/Platforms/Tizen/tizen-manifest.xml

Lines changed: 0 additions & 15 deletions
This file was deleted.
-68.2 KB
Binary file not shown.

SunburstChartGettingStarted/SunburstChartGettingStarted.sln

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<Solution>
2+
<Project Path="SunburstChartGettingStarted/SunburstChartGettingStarted.csproj" />
3+
</Solution>

SunburstChartGettingStarted/App.xaml renamed to SunburstChartGettingStarted/SunburstChartGettingStarted/App.xaml

File renamed without changes.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using Microsoft.Extensions.DependencyInjection;
2+
3+
namespace SunburstChartGettingStarted
4+
{
5+
public partial class App : Application
6+
{
7+
public App()
8+
{
9+
InitializeComponent();
10+
}
11+
12+
protected override Window CreateWindow(IActivationState? activationState)
13+
{
14+
return new Window(new AppShell());
15+
}
16+
}
17+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<Shell
3+
x:Class="SunburstChartGettingStarted.AppShell"
4+
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
5+
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
6+
xmlns:local="clr-namespace:SunburstChartGettingStarted"
7+
Title="SunburstChartGettingStarted">
8+
9+
<ShellContent
10+
Title="Home"
11+
ContentTemplate="{DataTemplate local:MainPage}"
12+
Route="MainPage" />
13+
14+
</Shell>

SunburstChartGettingStarted/App.xaml.cs renamed to SunburstChartGettingStarted/SunburstChartGettingStarted/AppShell.xaml.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
namespace SunburstChartGettingStarted
22
{
3-
public partial class App : Application
3+
public partial class AppShell : Shell
44
{
5-
public App()
5+
public AppShell()
66
{
77
InitializeComponent();
8-
9-
MainPage = new MainPage();
108
}
119
}
1210
}

SunburstChartGettingStarted/MainPage.xaml renamed to SunburstChartGettingStarted/SunburstChartGettingStarted/MainPage.xaml

File renamed without changes.

0 commit comments

Comments
 (0)