Skip to content

Commit 9063806

Browse files
Merge pull request #7 from SyncfusionExamples/change_target_framework
Update the .NET 9 Version
2 parents 31e2d58 + c6633b6 commit 9063806

Some content is hidden

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

53 files changed

+8312
-308
lines changed

Maui_ChartTooltip/App.xaml.cs

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

Maui_ChartTooltip/AppShell.xaml.cs

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

Maui_ChartTooltip/MainPage.xaml.cs

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

Maui_ChartTooltip/MauiProgram.cs

Lines changed: 0 additions & 21 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.35919.96 d17.13
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Maui_ChartTooltip", "Maui_ChartTooltip.csproj", "{7A0639F6-D847-4249-95FF-9059D1A823A8}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Maui_ChartTooltip", "Maui_ChartTooltip\Maui_ChartTooltip.csproj", "{D98110D2-6A26-4187-B870-7F2E0BDCF46C}"
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-
{7A0639F6-D847-4249-95FF-9059D1A823A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{7A0639F6-D847-4249-95FF-9059D1A823A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{7A0639F6-D847-4249-95FF-9059D1A823A8}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17-
{7A0639F6-D847-4249-95FF-9059D1A823A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{7A0639F6-D847-4249-95FF-9059D1A823A8}.Release|Any CPU.Build.0 = Release|Any CPU
19-
{7A0639F6-D847-4249-95FF-9059D1A823A8}.Release|Any CPU.Deploy.0 = Release|Any CPU
14+
{D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{D98110D2-6A26-4187-B870-7F2E0BDCF46C}.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 = {E8A59F04-6EEF-42F7-AAC8-EA312C15238F}
2624
EndGlobalSection
2725
EndGlobal
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
namespace Maui_ChartTooltip
2+
{
3+
public partial class App : Application
4+
{
5+
public App()
6+
{
7+
InitializeComponent();
8+
}
9+
10+
protected override Window CreateWindow(IActivationState? activationState)
11+
{
12+
return new Window(new AppShell());
13+
}
14+
}
15+
}

Maui_ChartTooltip/AppShell.xaml renamed to Maui_ChartTooltip/Maui_ChartTooltip/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:Maui_ChartTooltip"
7-
Shell.FlyoutBehavior="Disabled">
7+
Shell.FlyoutBehavior="Flyout"
8+
Title="Maui_ChartTooltip">
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 Maui_ChartTooltip
2+
{
3+
public partial class AppShell : Shell
4+
{
5+
public AppShell()
6+
{
7+
InitializeComponent();
8+
}
9+
}
10+
}

Maui_ChartTooltip/MainPage.xaml renamed to Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
</chart:SfCartesianChart.YAxes>
3838

3939
<chart:ColumnSeries ItemsSource="{Binding Data}"
40-
XBindingPath="Country" YBindingPath="Population"
41-
EnableTooltip="True"
42-
TooltipTemplate="{StaticResource tooltipTemplate}">
40+
XBindingPath="Country" YBindingPath="Population"
41+
EnableTooltip="True"
42+
TooltipTemplate="{StaticResource tooltipTemplate}">
4343
</chart:ColumnSeries>
4444
</chart:SfCartesianChart>
4545
</Grid>

0 commit comments

Comments
 (0)