Skip to content

Commit 57f9f3c

Browse files
Sample name changed
1 parent 33f1774 commit 57f9f3c

Some content is hidden

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

54 files changed

+40
-40
lines changed
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
4-
VisualStudioVersion = 17.10.35013.160
4+
VisualStudioVersion = 17.9.34701.34
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DoughnutChart", "DoughnutChart\DoughnutChart.csproj", "{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DrillDownChart", "DrillDownChart\DrillDownChart.csproj", "{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}"
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-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Release|Any CPU.Build.0 = Release|Any CPU
19-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Release|Any CPU.Deploy.0 = Release|Any CPU
14+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Release|Any CPU.Build.0 = Release|Any CPU
19+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Release|Any CPU.Deploy.0 = Release|Any CPU
2020
EndGlobalSection
2121
GlobalSection(SolutionProperties) = preSolution
2222
HideSolutionNode = FALSE
2323
EndGlobalSection
2424
GlobalSection(ExtensibilityGlobals) = postSolution
25-
SolutionGuid = {F549FB43-CE95-40A3-9A56-72E1337BC5FA}
25+
SolutionGuid = {0D8DD2F6-7523-4676-BC2F-6156FEFCFE6E}
2626
EndGlobalSection
2727
EndGlobal

DoughnutChartWithDrillDown/DoughnutChart/App.xaml renamed to DrillDownChart/DrillDownChart/App.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version = "1.0" encoding = "UTF-8" ?>
22
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4-
xmlns:local="clr-namespace:DoughnutChart"
5-
x:Class="DoughnutChart.App">
4+
xmlns:local="clr-namespace:DrillDownChart"
5+
x:Class="DrillDownChart.App">
66
<Application.Resources>
77
<ResourceDictionary>
88
<ResourceDictionary.MergedDictionaries>

DoughnutChartWithDrillDown/DoughnutChart/App.xaml.cs renamed to DrillDownChart/DrillDownChart/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace DoughnutChart
1+
namespace DrillDownChart
22
{
33
public partial class App : Application
44
{

DoughnutChartWithDrillDown/DoughnutChart/AppShell.xaml renamed to DrillDownChart/DrillDownChart/AppShell.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<Shell
3-
x:Class="DoughnutChart.AppShell"
3+
x:Class="DrillDownChart.AppShell"
44
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
55
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
6-
xmlns:local="clr-namespace:DoughnutChart"
6+
xmlns:local="clr-namespace:DrillDownChart"
77
Shell.FlyoutBehavior="Disabled"
8-
Title="DoughnutChart">
8+
Title="DrillDownChart">
99

1010
<ShellContent
1111
ContentTemplate="{DataTemplate local:MainPage}"

DoughnutChartWithDrillDown/DoughnutChart/AppShell.xaml.cs renamed to DrillDownChart/DrillDownChart/AppShell.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace DoughnutChart
1+
namespace DrillDownChart
22
{
33
public partial class AppShell : Shell
44
{

DoughnutChartWithDrillDown/DoughnutChart/DoughnutChart.csproj renamed to DrillDownChart/DrillDownChart/DrillDownChart.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@
1414
<!-- For example: <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> -->
1515

1616
<OutputType>Exe</OutputType>
17-
<RootNamespace>DoughnutChart</RootNamespace>
17+
<RootNamespace>DrillDownChart</RootNamespace>
1818
<UseMaui>true</UseMaui>
1919
<SingleProject>true</SingleProject>
2020
<ImplicitUsings>enable</ImplicitUsings>
2121
<Nullable>enable</Nullable>
2222

2323
<!-- Display name -->
24-
<ApplicationTitle>DoughnutChart</ApplicationTitle>
24+
<ApplicationTitle>DrillDownChart</ApplicationTitle>
2525

2626
<!-- App Identifier -->
27-
<ApplicationId>com.companyname.doughnutchart</ApplicationId>
27+
<ApplicationId>com.companyname.DrillDownChart</ApplicationId>
2828

2929
<!-- Versions -->
3030
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>

DoughnutChartWithDrillDown/DoughnutChart/MainPage.xaml renamed to DrillDownChart/DrillDownChart/MainPage.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
44
xmlns:chart="clr-namespace:Syncfusion.Maui.Charts;assembly=Syncfusion.Maui.Charts"
5-
xmlns:local="clr-namespace:DoughnutChart"
6-
x:Class="DoughnutChart.MainPage">
5+
xmlns:local="clr-namespace:DrillDownChart"
6+
x:Class="DrillDownChart.MainPage">
77

88
<Border StrokeThickness="1" Stroke="Black" Margin="{OnPlatform Default=8, iOS=20}" >
99

DoughnutChartWithDrillDown/DoughnutChart/MainPage.xaml.cs renamed to DrillDownChart/DrillDownChart/MainPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections;
33
using System.Globalization;
44

5-
namespace DoughnutChart
5+
namespace DrillDownChart
66
{
77
public partial class MainPage : ContentPage
88
{

DoughnutChartWithDrillDown/DoughnutChart/MauiProgram.cs renamed to DrillDownChart/DrillDownChart/MauiProgram.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.Extensions.Logging;
22
using Syncfusion.Maui.Core.Hosting;
33

4-
namespace DoughnutChart
4+
namespace DrillDownChart
55
{
66
public static class MauiProgram
77
{

DoughnutChartWithDrillDown/DoughnutChart/Model/DataModel.cs renamed to DrillDownChart/DrillDownChart/Model/DataModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Microsoft.Maui.Controls.Shapes;
22

3-
namespace DoughnutChart
3+
namespace DrillDownChart
44
{
55
public class DataModel
66
{

DoughnutChartWithDrillDown/DoughnutChart/Platforms/Android/MainActivity.cs renamed to DrillDownChart/DrillDownChart/Platforms/Android/MainActivity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Android.Content.PM;
33
using Android.OS;
44

5-
namespace DoughnutChart
5+
namespace DrillDownChart
66
{
77
[Activity(Theme = "@style/Maui.SplashTheme", ScreenOrientation = ScreenOrientation.Landscape , MainLauncher = true, LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
88
public class MainActivity : MauiAppCompatActivity

DoughnutChartWithDrillDown/DoughnutChart/Platforms/Android/MainApplication.cs renamed to DrillDownChart/DrillDownChart/Platforms/Android/MainApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Android.App;
22
using Android.Runtime;
33

4-
namespace DoughnutChart
4+
namespace DrillDownChart
55
{
66
[Application]
77
public class MainApplication : MauiApplication

DoughnutChartWithDrillDown/DoughnutChart/Platforms/MacCatalyst/AppDelegate.cs renamed to DrillDownChart/DrillDownChart/Platforms/MacCatalyst/AppDelegate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Foundation;
22

3-
namespace DoughnutChart
3+
namespace DrillDownChart
44
{
55
[Register("AppDelegate")]
66
public class AppDelegate : MauiUIApplicationDelegate

DoughnutChartWithDrillDown/DoughnutChart/Platforms/iOS/Program.cs renamed to DrillDownChart/DrillDownChart/Platforms/MacCatalyst/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using ObjCRuntime;
22
using UIKit;
33

4-
namespace DoughnutChart
4+
namespace DrillDownChart
55
{
66
public class Program
77
{

DoughnutChartWithDrillDown/DoughnutChart/Platforms/Tizen/Main.cs renamed to DrillDownChart/DrillDownChart/Platforms/Tizen/Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Microsoft.Maui.Hosting;
33
using System;
44

5-
namespace DoughnutChart
5+
namespace DrillDownChart
66
{
77
internal class Program : MauiApplication
88
{

DoughnutChartWithDrillDown/DoughnutChart/Platforms/Tizen/tizen-manifest.xml renamed to DrillDownChart/DrillDownChart/Platforms/Tizen/tizen-manifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest package="maui-application-id-placeholder" version="0.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">
33
<profile name="common" />
4-
<ui-application appid="maui-application-id-placeholder" exec="DoughnutChart.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single">
4+
<ui-application appid="maui-application-id-placeholder" exec="DrillDownChart.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single">
55
<label>maui-application-title-placeholder</label>
66
<icon>maui-appicon-placeholder</icon>
77
<metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<maui:MauiWinUIApplication
2-
x:Class="DoughnutChart.WinUI.App"
2+
x:Class="DrillDownChart.WinUI.App"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
xmlns:maui="using:Microsoft.Maui"
6-
xmlns:local="using:DoughnutChart.WinUI">
6+
xmlns:local="using:DrillDownChart.WinUI">
77

88
</maui:MauiWinUIApplication>

DoughnutChartWithDrillDown/DoughnutChart/Platforms/Windows/App.xaml.cs renamed to DrillDownChart/DrillDownChart/Platforms/Windows/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// To learn more about WinUI, the WinUI project structure,
44
// and more about our project templates, see: http://aka.ms/winui-project-info.
55

6-
namespace DoughnutChart.WinUI
6+
namespace DrillDownChart.WinUI
77
{
88
/// <summary>
99
/// Provides application-specific behavior to supplement the default Application class.

DoughnutChartWithDrillDown/DoughnutChart/Platforms/Windows/app.manifest renamed to DrillDownChart/DrillDownChart/Platforms/Windows/app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3-
<assemblyIdentity version="1.0.0.0" name="DoughnutChart.WinUI.app"/>
3+
<assemblyIdentity version="1.0.0.0" name="DrillDownChart.WinUI.app"/>
44

55
<application xmlns="urn:schemas-microsoft-com:asm.v3">
66
<windowsSettings>

DoughnutChartWithDrillDown/DoughnutChart/Platforms/iOS/AppDelegate.cs renamed to DrillDownChart/DrillDownChart/Platforms/iOS/AppDelegate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Foundation;
22

3-
namespace DoughnutChart
3+
namespace DrillDownChart
44
{
55
[Register("AppDelegate")]
66
public class AppDelegate : MauiUIApplicationDelegate

DoughnutChartWithDrillDown/DoughnutChart/Platforms/MacCatalyst/Program.cs renamed to DrillDownChart/DrillDownChart/Platforms/iOS/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using ObjCRuntime;
22
using UIKit;
33

4-
namespace DoughnutChart
4+
namespace DrillDownChart
55
{
66
public class Program
77
{

DoughnutChartWithDrillDown/DoughnutChart/SecondaryPage.xaml renamed to DrillDownChart/DrillDownChart/SecondaryPage.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4-
x:Class="DoughnutChart.SecondaryPage"
4+
x:Class="DrillDownChart.SecondaryPage"
55
xmlns:chart="clr-namespace:Syncfusion.Maui.Charts;assembly=Syncfusion.Maui.Charts"
6-
xmlns:local="clr-namespace:DoughnutChart"
6+
xmlns:local="clr-namespace:DrillDownChart"
77
Title="Share of Workers in the United States (2023)">
88

99
<chart:SfCircularChart Margin="{OnPlatform Default='10', iOS='-70, 10, 10, 10'}" >

DoughnutChartWithDrillDown/DoughnutChart/SecondaryPage.xaml.cs renamed to DrillDownChart/DrillDownChart/SecondaryPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Syncfusion.Maui.Charts;
22
using System.Globalization;
33

4-
namespace DoughnutChart
4+
namespace DrillDownChart
55
{
66
public partial class SecondaryPage : ContentPage
77
{

DoughnutChartWithDrillDown/DoughnutChart/ViewModel/DataViewModel.cs renamed to DrillDownChart/DrillDownChart/ViewModel/DataViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.ObjectModel;
33
using System.ComponentModel;
44

5-
namespace DoughnutChart
5+
namespace DrillDownChart
66
{
77
public class DataViewModel : INotifyPropertyChanged
88
{

0 commit comments

Comments
 (0)