Skip to content

Commit 3addc52

Browse files
Merge pull request #4 from SyncfusionExamples/Chart_Sqlite_Sample
Updated Project sample with .Net 9 version.
2 parents 4bf43ee + 87dd633 commit 3addc52

Some content is hidden

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

56 files changed

+8284
-294
lines changed

Chart_Sqlite_Sample/AppShell.xaml.cs

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
4-
VisualStudioVersion = 17.0.31611.283
4+
VisualStudioVersion = 17.13.35931.197 d17.13
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Chart_Sqlite_Sample", "Chart_Sqlite_Sample.csproj", "{B002D0F6-E27B-4A58-9DE8-D0E483404B25}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Chart_Sqlite_Sample", "Chart_Sqlite_Sample\Chart_Sqlite_Sample.csproj", "{861B11BE-FB9B-4AEC-AFAA-924C6F88A946}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
1111
Release|Any CPU = Release|Any CPU
1212
EndGlobalSection
1313
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{B002D0F6-E27B-4A58-9DE8-D0E483404B25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{B002D0F6-E27B-4A58-9DE8-D0E483404B25}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{B002D0F6-E27B-4A58-9DE8-D0E483404B25}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17-
{B002D0F6-E27B-4A58-9DE8-D0E483404B25}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{B002D0F6-E27B-4A58-9DE8-D0E483404B25}.Release|Any CPU.Build.0 = Release|Any CPU
19-
{B002D0F6-E27B-4A58-9DE8-D0E483404B25}.Release|Any CPU.Deploy.0 = Release|Any CPU
14+
{861B11BE-FB9B-4AEC-AFAA-924C6F88A946}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{861B11BE-FB9B-4AEC-AFAA-924C6F88A946}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{861B11BE-FB9B-4AEC-AFAA-924C6F88A946}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{861B11BE-FB9B-4AEC-AFAA-924C6F88A946}.Release|Any CPU.Build.0 = Release|Any CPU
2018
EndGlobalSection
2119
GlobalSection(SolutionProperties) = preSolution
2220
HideSolutionNode = FALSE
2321
EndGlobalSection
2422
GlobalSection(ExtensibilityGlobals) = postSolution
25-
SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572}
23+
SolutionGuid = {EC8847C3-8A3B-41E2-A34B-EC4FD89FD707}
2624
EndGlobalSection
2725
EndGlobal

Chart_Sqlite_Sample/AppShell.xaml renamed to Chart_Sqlite_Sample/Chart_Sqlite_Sample/AppShell.xaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
55
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
66
xmlns:local="clr-namespace:Chart_Sqlite_Sample"
7-
Shell.FlyoutBehavior="Disabled">
7+
Shell.FlyoutBehavior="Flyout"
8+
Title="Chart_Sqlite_Sample">
89

910
<ShellContent
1011
Title="Home"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
namespace Chart_Sqlite_Sample
2+
{
3+
public partial class AppShell : Shell
4+
{
5+
public AppShell()
6+
{
7+
InitializeComponent();
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)