diff --git a/.github/PULL_REQUEST_TEMPLATE/Bug.md b/.github/PULL_REQUEST_TEMPLATE/Bug.md deleted file mode 100644 index 784bb596..00000000 --- a/.github/PULL_REQUEST_TEMPLATE/Bug.md +++ /dev/null @@ -1,73 +0,0 @@ -### Bug Description ### - -Clearly and concisely describe the problem or feature (this cannot be empty). - -### Root Cause ### - -Briefly describe the root cause and analysis of the problem. -If there is an internal discussion on the forum, provide the link. - -### Reason for not identifying earlier ### - -Find how it was missed in our earlier testing and development by analysing the below checklist. This will help prevent similar mistakes in the future. - -**Guidelines/documents are not followed** - -Common guidelines / Core team guideline -Specification document -Requirement document - -**Guidelines/documents are not given** - -Common guidelines / Core team guideline -Specification document -Requirement document - -**Reason:** -Mention any one or more reasons from the above points. - -**Action taken:** -What action did you take to avoid this in future? - -**Related areas:** -Is there any other related areas also to be addressed? - -### Is Breaking issue? ### - -If it is a breaking issue, provide the commit detail which caused this break. - -### Solution description ### - -Describe your code changes in detail for reviewers. - -### Output screenshots ### - -Post the output screenshots if an UI is affected or added due to this bug. - -**Before changes:** -Add the image which was taken before making these changes. Place a cursor here and click "Attach a file" button and upload the image. - -**After changes:** -Add the image which was taken after making these changes. Place a cursor here and click "Attach a file" button and upload the image. - -### Areas affected and ensured ### - -List out the areas are affected by your code changes. -Is there any existing behavior change of other features due to this code change? - -### Does it have any known issues? - -If this fix contains any known issues, provide the proper details about the issues. - -### Does it have memory leak? - -Ensure the fix contains memory leak or not (if applicable). - -### MR CheckList ### - -- [ ] Does it follow the design [guidelines](https://docs.microsoft.com/en-us/dotnet/standard/design-guidelines/)? It is mandatory that, we should not move the changes without reading this. -- [ ] Did UI automation passed without errors? If it is customer issue, make sure it is included in the IR automation. -- [ ] Properly working in Xamarin.Forms [previewer](https://docs.microsoft.com/en-us/xamarin/xamarin-forms/xaml/xaml-previewer?tabs=vswin). -- [ ] Ensured in iOS, Android, UWP and macOS (if supported). -- [ ] Have you ensured the changes in Android API 19 and iOS 9? -- [ ] Did you record this case in the unit test or UI test? diff --git a/.github/PULL_REQUEST_TEMPLATE/Default.md b/.github/PULL_REQUEST_TEMPLATE/Default.md deleted file mode 100644 index 671a7da9..00000000 --- a/.github/PULL_REQUEST_TEMPLATE/Default.md +++ /dev/null @@ -1,27 +0,0 @@ -### Description ### - -Clearly and concisely describe the changes your are committing in samples. (this cannot be empty). - -### Output screenshots ### - -Post the output screenshots if an UI is affected or added due to this change. - -**Before changes:** -Add the image which was taken before making these changes. Place a cursor here and click "Attach a file" button and upload the image. - -**After changes:** -Add the image which was taken after making these changes. Place a cursor here and click "Attach a file" button and upload the image. - -### Does it have memory leak? [how to clear memory leak](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/2084675529/How+to+clear+memory+leak+in+sample) - -Ensure the changes contains memory leak or not (if applicable). - -### MR CheckList ### - -* [ ] Demos are added as per [guideline](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/1986855767/How+to+add+demos+to+project) -* [ ] Ensured files and images refered in SB as per [guideline](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/1987216663/How+to+refer+files+Images+in+SB) -* [ ] Sample is ordered as per [guideline](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/2049313463/How+to+order+feature+list+and+demos) -* [ ] Descriptions of the control and sample are reviewed by content team. -* [ ] Example codes are provided as per [guideline](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/1987085412/Example) -* [ ] Options are used as per [guideline](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/1995964937/Options) -* [ ] `.csproj` files changes included in `_lib` project also. diff --git a/.github/PULL_REQUEST_TEMPLATE/Feature.md b/.github/PULL_REQUEST_TEMPLATE/Feature.md deleted file mode 100644 index 55034fe4..00000000 --- a/.github/PULL_REQUEST_TEMPLATE/Feature.md +++ /dev/null @@ -1,70 +0,0 @@ -### Feature description ### - -Clearly and concisely describe the problem or feature (this cannot be empty). - -### Analysis and design ### - -If there is an external design, link to its project documentation area. -If there is an internal discussion on the forum, provide the link. - -### Solution description ### - -Describe your code changes in detail for reviewers. - -### Output screenshots ### - -Post the output screenshots if an UI is affected or added due to this feature. - -### Areas affected and ensured ### - -List the areas are affected by your code changes. - -### API Changes ### - -List all API changes here (or just put None), example: - -Added: - - string ListView.GroupName { get; set; } //Bindable Property - - int ListView.GroupId { get; set; } // Bindable Property - - void ListView.Clear (); - -Changed: - - object ListView.SelectedItem => Cell ListView.SelectedItem - -### Behavioral Changes ### - -Describe any non-bug related behavioral changes that may change how users app behaves when upgrading to this version of the codebase. - -### Test cases ### - -Provide the unit testing written file details to understand the use cases considered in this implementation. -If there is no TDD (if it’s not possible to follow), provide the UI automation script location and the Excel file that contains the use cases considered in this implementation. -Provide the test cases Excel file alone if the feature cannot be automated in any case. - -List out all the scenarios you have tested after include these changes. You can refer the predefined scenarios from below link. - -https://syncfusion.atlassian.net/wiki/display/CHARTXAMARIN/Chart+Test+Plan - -### Testbed sample location ### - -Provide the test bed sample location where code reviewers can review the new feature’s behaviors. This depends on the CI process that your team follows. It can be from NPMCI, HockeyApp, staging site, local server, etc. - -### Does it have any known issues? - -If this feature contains any known issues, provide the proper details about the issues. - -### Does it have memory leak? - -Ensure the feature contains memory leak or not (if applicable). - -### MR CheckList ### - -- [ ] Does it follow the design [guidelines](https://docs.microsoft.com/en-us/dotnet/standard/design-guidelines/)? It is mandatory that, we should not move the changes without reading this. -- [ ] Did UI automation passed without errors? If it is customer issue, make sure it is included in the IR automation. -- [ ] Properly working in Xamarin.Forms [previewer](https://docs.microsoft.com/en-us/xamarin/xamarin-forms/xaml/xaml-previewer?tabs=vswin). -- [ ] Ensured in iOS, Android, UWP and macOS (if supported). -- [ ] Have you added API comments if it is new API? -- [ ] Does it need localization? If so, update resx file in [GitHub](https://github.com/syncfusion/xamarin-localized-texts). -- [ ] Whether we have added new APIs? If so, whether it is as per the [guidelines](https://docs.microsoft.com/en-us/dotnet/standard/design-guidelines/)? -- [ ] If changes are made in the Xamarin.Forms sample browser project file, whether it is included in the props file too? If not, your sample level changes will not reflect in the application published in the hockey app. -- [ ] Have you ensured the changes in Android API 19 and iOS 9? diff --git a/.github/PULL_REQUEST_TEMPLATE/Sample.md b/.github/PULL_REQUEST_TEMPLATE/Sample.md deleted file mode 100644 index 671a7da9..00000000 --- a/.github/PULL_REQUEST_TEMPLATE/Sample.md +++ /dev/null @@ -1,27 +0,0 @@ -### Description ### - -Clearly and concisely describe the changes your are committing in samples. (this cannot be empty). - -### Output screenshots ### - -Post the output screenshots if an UI is affected or added due to this change. - -**Before changes:** -Add the image which was taken before making these changes. Place a cursor here and click "Attach a file" button and upload the image. - -**After changes:** -Add the image which was taken after making these changes. Place a cursor here and click "Attach a file" button and upload the image. - -### Does it have memory leak? [how to clear memory leak](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/2084675529/How+to+clear+memory+leak+in+sample) - -Ensure the changes contains memory leak or not (if applicable). - -### MR CheckList ### - -* [ ] Demos are added as per [guideline](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/1986855767/How+to+add+demos+to+project) -* [ ] Ensured files and images refered in SB as per [guideline](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/1987216663/How+to+refer+files+Images+in+SB) -* [ ] Sample is ordered as per [guideline](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/2049313463/How+to+order+feature+list+and+demos) -* [ ] Descriptions of the control and sample are reviewed by content team. -* [ ] Example codes are provided as per [guideline](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/1987085412/Example) -* [ ] Options are used as per [guideline](https://syncfusion.atlassian.net/wiki/spaces/XAML/pages/1995964937/Options) -* [ ] `.csproj` files changes included in `_lib` project also. diff --git a/.gitignore b/.gitignore deleted file mode 100644 index b1c95d7a..00000000 --- a/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -*/obj/ -*/bin/ -*/.vs/ -samplebrowser/AppPackages/ -*.user -editor/syncfusion.editordemos.winui_net50 (Package)/ -calendar/syncfusion.calendardemos.winui_net50 (Package)/ diff --git a/Install.ps1 b/Install.ps1 deleted file mode 100644 index 9c76ec5f..00000000 --- a/Install.ps1 +++ /dev/null @@ -1,32 +0,0 @@ -function waitUntillInstallation { - Write-Host "Function has been called" - - $installComplete = 0 - -while($installComplete -le 1) -{ - Write-Host "Test" - $msi = Get-Process msiexec -ErrorAction SilentlyContinue - if ($msi) { - Sleep(10) - } - else - { - $installComplete = 2 - } - -} -} - -#Create Software folder for download -New-Item -ItemType Directory -Force -Path C:/Software -& { (New-Object System.Net.WebClient).DownloadFile('https://www.syncfusion.com/downloads/support/directtrac/general/ze/syncfusionpfx-546827946', 'C:/Software/syncfusionpfx-546827946.zip') } - -#Extract zip file -Add-Type -AssemblyName System.IO.Compression.FileSystem -[System.IO.Compression.ZipFile]::ExtractToDirectory('C:/Software/syncfusionpfx-546827946.zip', 'C:\Software') - -# Certificate installation -Import-PfxCertificate -FilePath C:\Software\syncfusion.pfx -CertStoreLocation Cert:\CurrentUser\My -Password (ConvertTo-SecureString -String "Coolcomp299" -Force -AsPlainText) - -waitUntillInstallation diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index b103f616..00000000 --- a/Jenkinsfile +++ /dev/null @@ -1,153 +0,0 @@ -node ('Winui') -{ -timestamps -{ - timeout(time: 7200000, unit: 'MILLISECONDS') - { - stage 'Checkout' - try - { - checkout([$class: 'GitSCM', branches: [[name: '*/$githubSourceBranch']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'SB-winui']], submoduleCfg: [], userRemoteConfigs: [[credentialsId: env.githubCredentialId, url: 'https://github.com/essential-studio/samplebrowser-winui.git']]]) - - checkout([$class: 'GitSCM', branches: [[name: 'development']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'xaml-cake-plugin']], submoduleCfg: [], userRemoteConfigs: [[credentialsId: env.githubCredentialId, url: 'https://github.com/essential-studio/xaml-cake-plugin.git']]]) - } - catch(Exception e) - { - echo "Exception in checkout stage \r\n"+e - currentBuild.result = 'FAILURE' - } -if(currentBuild.result != 'FAILURE') -{ - stage('Install Software') { - try - { - nodejs(nodeJSInstallationName: 'nodejs-16.17.1') { - bat 'npm config ls' - } - - env.PATH = "C:\\tools\\jenkins.plugins.nodejs.tools.NodeJSInstallation\\nodejs-16.17.1;${env.PATH}" - bat 'npm -v' - bat 'npm install --location=global appcenter-cli' - - bat 'powershell.exe -ExecutionPolicy ByPass -File SB-winui/Install.ps1' - echo "Software installation completed" - } - catch(Exception e) - { - echo "Exception in software installation stage \r\n"+e - currentBuild.result = 'FAILURE' - } - } -} -if(currentBuild.result != 'FAILURE') -{ - stage 'Build Source' - try - { - gitlabCommitStatus("Build") - { - bat 'powershell.exe -ExecutionPolicy ByPass -File SB-winui/build/build.ps1 -Script '+env.WORKSPACE+"/SB-winui/build/build.cake -Target build -OutputPath Assemblies -StudioVersion "+env.studio_version+' -nugetserverurl '+env.nugetserverurls - } - def files = findFiles(glob: '**/cireports/errorlogs/*.txt') - - if(files.size() > 0) - { - currentBuild.result = 'FAILURE' - } - } - catch(Exception e) - { - echo "Exception in build source stage \r\n"+e - currentBuild.result = 'FAILURE' - } -} - -if(currentBuild.result != 'FAILURE') -{ - stage 'Test' - try - { - gitlabCommitStatus("Test") - { - bat 'powershell.exe -ExecutionPolicy ByPass -File SB-winui/build/build.ps1 -Script '+env.WORKSPACE+"/SB-winui/build/build.cake -Target test -nugetserverurl "+env.nugetserverurls - } - } - catch(Exception e) - { - currentBuild.result = 'FAILURE' - } -} - - -if(currentBuild.result != 'FAILURE') -{ - stage 'Code violation' -try -{ - gitlabCommitStatus("Code violation") - { - bat 'powershell.exe -ExecutionPolicy ByPass -File SB-winui/build/build.ps1 -Script '+env.WORKSPACE+"/SB-winui/build/build.cake -Target codeviolation" - } -} - catch(Exception e) - { - echo "Exception in code violation stage \r\n"+e - currentBuild.result = 'FAILURE' - } -} - -if(currentBuild.result != 'FAILURE' && env.publishBranch.contains(githubSourceBranch)) -{ - stage 'Publish' - try - { - //method to get release notes content - env.PATH = "C:\\Program Files\\Git\\mingw64\\bin;${env.PATH}" - def branchCommit = '"'+'https://api.github.com/repos/essential-studio/SB-winui/pulls/'+env.pullRequestId+'/commits' - String branchCommitDetails = bat returnStdout: true, script: 'curl -H "Accept: application/vnd.github.v3+json" -u SyncfusionBuild:' +env.GithubBuildAutomation_PrivateToken+" "+branchCommit - def splitCommitDetails=branchCommitDetails.split('\n') - def splitMessageDetails = splitCommitDetails[2].split('"message":') - def releaseNotesContent=""; - for(int k=1; k 0) - { - archiveArtifacts artifacts: 'cireports/', excludes: null - } - - step([$class: 'WsCleanup']) - } -} -} diff --git a/RepositoryInfo.json b/RepositoryInfo.json deleted file mode 100644 index 75e5ca2d..00000000 --- a/RepositoryInfo.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "Name": "samplebrowser-winui", - "Platforms": [{ - "Name": "WinUI", - "IsPublishWinUISampleBrowser": true, - "Assemblies": [ - { - "Name": "samplebrowser.winui", - "EnableFxCopAnalyzer": false, - "TreatWarningsAsErrors": false, - "IsBuildWinUISampleBrowser": true, - "IsNetStandardAssembly": true - } - ] - }] -} diff --git a/SB/App.ico b/SB/App.ico deleted file mode 100644 index 56fccbdf..00000000 Binary files a/SB/App.ico and /dev/null differ diff --git a/SB/App.xaml b/SB/App.xaml deleted file mode 100644 index fc4d7e74..00000000 --- a/SB/App.xaml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/SB/App.xaml.cs b/SB/App.xaml.cs deleted file mode 100644 index 9343ab10..00000000 --- a/SB/App.xaml.cs +++ /dev/null @@ -1,103 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System; -using System.Linq; -using Windows.ApplicationModel; -using Windows.ApplicationModel.Activation; -using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Controls; -using Microsoft.UI.Xaml.Navigation; -using System.Xml.Linq; -using Windows.ApplicationModel.Core; -using Syncfusion.DemosCommon.WinUI; -using Windows.System.Profile; - -namespace Syncfusion.SampleBrowser.WinUI -{ - /// - /// Provides application-specific behavior to supplement the default Application class. - /// - sealed partial class App : Application - { - /// - /// Initializes the singleton application object. This is the first line of authored code - /// executed, and as such is the logical equivalent of main() or WinMain(). - /// - public App() - { - this.InitializeComponent(); - } - - /// - /// Invoked when the application is launched normally by the end user. Other entry points - /// will be used such as when the application is launched to open a specific file. - /// - /// Details about the launch request and process. - protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs e) - { -#if DEBUG - if (System.Diagnostics.Debugger.IsAttached) - { - this.DebugSettings.EnableFrameRateCounter = false; - } -#endif - - m_window = new MainWindow(); - m_window.Activate(); - Frame rootFrame = m_window.Content as Frame; - - - // Do not repeat app initialization when the Window already has content, - // just ensure that the window is active - if (rootFrame == null) - { - // Create a Frame to act as the navigation context and navigate to the first page - rootFrame = new Frame(); - - // rootFrame.NavigationFailed += OnNavigationFailed; - - if (e != null && e.UWPLaunchActivatedEventArgs.PreviousExecutionState == ApplicationExecutionState.Terminated) - { - //TODO: Load state from previously suspended application - } - - // Place the frame in the current Window - m_window.Content = rootFrame; - } - - Activator.CreateInstance(typeof(SamplesConfiguration)); - - // if (e != null && e.UWPLaunchActivatedEventArgs.PrelaunchActivated == false) - { - if (rootFrame.Content == null) - { - // When the navigation stack isn't restored navigate to the first page, - // configuring the new page by passing required information as a navigation - // parameter - rootFrame.Navigate(typeof(DemosCommon.WinUI.MainPage), e.Arguments); - } - // Ensure the current window is active - m_window.Activate(); - } - ThemeHelper.CurrentApplicationWindow = m_window; - } - - /// - /// Invoked when Navigation to a certain page fails - /// - /// The Frame which failed navigation - /// Details about the navigation failure - void OnNavigationFailed(object sender, NavigationFailedEventArgs e) - { - throw new Exception("Failed to load Page " + e.SourcePageType.FullName); - } - - - private MainWindow m_window; - } -} diff --git a/SB/Assets/LockScreenLogo.scale-200.png b/SB/Assets/LockScreenLogo.scale-200.png deleted file mode 100644 index 0bcb25b2..00000000 Binary files a/SB/Assets/LockScreenLogo.scale-200.png and /dev/null differ diff --git a/SB/Assets/SplashScreen.scale-200.png b/SB/Assets/SplashScreen.scale-200.png deleted file mode 100644 index 50c04eeb..00000000 Binary files a/SB/Assets/SplashScreen.scale-200.png and /dev/null differ diff --git a/SB/Assets/Square150x150Logo.scale-200.png b/SB/Assets/Square150x150Logo.scale-200.png deleted file mode 100644 index a496976c..00000000 Binary files a/SB/Assets/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/SB/Assets/Square44x44Logo.scale-200.png b/SB/Assets/Square44x44Logo.scale-200.png deleted file mode 100644 index e427f719..00000000 Binary files a/SB/Assets/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/SB/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/SB/Assets/Square44x44Logo.targetsize-24_altform-unplated.png deleted file mode 100644 index f6c02ce9..00000000 Binary files a/SB/Assets/Square44x44Logo.targetsize-24_altform-unplated.png and /dev/null differ diff --git a/SB/Assets/StoreLogo.png b/SB/Assets/StoreLogo.png deleted file mode 100644 index 9e4b0328..00000000 Binary files a/SB/Assets/StoreLogo.png and /dev/null differ diff --git a/SB/Assets/Tiles/LargeTile.scale-100.png b/SB/Assets/Tiles/LargeTile.scale-100.png deleted file mode 100644 index ae1cfbab..00000000 Binary files a/SB/Assets/Tiles/LargeTile.scale-100.png and /dev/null differ diff --git a/SB/Assets/Tiles/LargeTile.scale-200.png b/SB/Assets/Tiles/LargeTile.scale-200.png deleted file mode 100644 index fd6bde0a..00000000 Binary files a/SB/Assets/Tiles/LargeTile.scale-200.png and /dev/null differ diff --git a/SB/Assets/Tiles/LargeTile.scale-400.png b/SB/Assets/Tiles/LargeTile.scale-400.png deleted file mode 100644 index 60cafde9..00000000 Binary files a/SB/Assets/Tiles/LargeTile.scale-400.png and /dev/null differ diff --git a/SB/Assets/Tiles/SmallTile.scale-100.png b/SB/Assets/Tiles/SmallTile.scale-100.png deleted file mode 100644 index 5879e1e9..00000000 Binary files a/SB/Assets/Tiles/SmallTile.scale-100.png and /dev/null differ diff --git a/SB/Assets/Tiles/SmallTile.scale-200.png b/SB/Assets/Tiles/SmallTile.scale-200.png deleted file mode 100644 index da1d8201..00000000 Binary files a/SB/Assets/Tiles/SmallTile.scale-200.png and /dev/null differ diff --git a/SB/Assets/Tiles/SmallTile.scale-400.png b/SB/Assets/Tiles/SmallTile.scale-400.png deleted file mode 100644 index 253930fe..00000000 Binary files a/SB/Assets/Tiles/SmallTile.scale-400.png and /dev/null differ diff --git a/SB/Assets/Tiles/SplashScreen.scale-100.png b/SB/Assets/Tiles/SplashScreen.scale-100.png deleted file mode 100644 index 7cba535b..00000000 Binary files a/SB/Assets/Tiles/SplashScreen.scale-100.png and /dev/null differ diff --git a/SB/Assets/Tiles/SplashScreen.scale-125.png b/SB/Assets/Tiles/SplashScreen.scale-125.png deleted file mode 100644 index 3548ecd2..00000000 Binary files a/SB/Assets/Tiles/SplashScreen.scale-125.png and /dev/null differ diff --git a/SB/Assets/Tiles/SplashScreen.scale-150.png b/SB/Assets/Tiles/SplashScreen.scale-150.png deleted file mode 100644 index 73592b8d..00000000 Binary files a/SB/Assets/Tiles/SplashScreen.scale-150.png and /dev/null differ diff --git a/SB/Assets/Tiles/SplashScreen.scale-200.png b/SB/Assets/Tiles/SplashScreen.scale-200.png deleted file mode 100644 index 34d0edab..00000000 Binary files a/SB/Assets/Tiles/SplashScreen.scale-200.png and /dev/null differ diff --git a/SB/Assets/Tiles/SplashScreen.scale-400.png b/SB/Assets/Tiles/SplashScreen.scale-400.png deleted file mode 100644 index d804373f..00000000 Binary files a/SB/Assets/Tiles/SplashScreen.scale-400.png and /dev/null differ diff --git a/SB/Assets/Tiles/Square150x150Logo.scale-100.png b/SB/Assets/Tiles/Square150x150Logo.scale-100.png deleted file mode 100644 index 506473ae..00000000 Binary files a/SB/Assets/Tiles/Square150x150Logo.scale-100.png and /dev/null differ diff --git a/SB/Assets/Tiles/Square150x150Logo.scale-200.png b/SB/Assets/Tiles/Square150x150Logo.scale-200.png deleted file mode 100644 index a496976c..00000000 Binary files a/SB/Assets/Tiles/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/SB/Assets/Tiles/Square150x150Logo.scale-400.png b/SB/Assets/Tiles/Square150x150Logo.scale-400.png deleted file mode 100644 index 6fa29691..00000000 Binary files a/SB/Assets/Tiles/Square150x150Logo.scale-400.png and /dev/null differ diff --git a/SB/Assets/Tiles/Square44x44Logo.scale-100.png b/SB/Assets/Tiles/Square44x44Logo.scale-100.png deleted file mode 100644 index 3e15a71a..00000000 Binary files a/SB/Assets/Tiles/Square44x44Logo.scale-100.png and /dev/null differ diff --git a/SB/Assets/Tiles/Square44x44Logo.scale-200.png b/SB/Assets/Tiles/Square44x44Logo.scale-200.png deleted file mode 100644 index 654354e6..00000000 Binary files a/SB/Assets/Tiles/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/SB/Assets/Tiles/Square44x44Logo.scale-400.png b/SB/Assets/Tiles/Square44x44Logo.scale-400.png deleted file mode 100644 index af2bfaa5..00000000 Binary files a/SB/Assets/Tiles/Square44x44Logo.scale-400.png and /dev/null differ diff --git a/SB/Assets/Tiles/StoreLogo.scale-100.png b/SB/Assets/Tiles/StoreLogo.scale-100.png deleted file mode 100644 index 9e4b0328..00000000 Binary files a/SB/Assets/Tiles/StoreLogo.scale-100.png and /dev/null differ diff --git a/SB/Assets/Tiles/StoreLogo.scale-125.png b/SB/Assets/Tiles/StoreLogo.scale-125.png deleted file mode 100644 index af1c25f5..00000000 Binary files a/SB/Assets/Tiles/StoreLogo.scale-125.png and /dev/null differ diff --git a/SB/Assets/Tiles/StoreLogo.scale-150.png b/SB/Assets/Tiles/StoreLogo.scale-150.png deleted file mode 100644 index 391ef12a..00000000 Binary files a/SB/Assets/Tiles/StoreLogo.scale-150.png and /dev/null differ diff --git a/SB/Assets/Tiles/StoreLogo.scale-200.png b/SB/Assets/Tiles/StoreLogo.scale-200.png deleted file mode 100644 index ff4d7a92..00000000 Binary files a/SB/Assets/Tiles/StoreLogo.scale-200.png and /dev/null differ diff --git a/SB/Assets/Tiles/StoreLogo.scale-400.png b/SB/Assets/Tiles/StoreLogo.scale-400.png deleted file mode 100644 index 8aa67d06..00000000 Binary files a/SB/Assets/Tiles/StoreLogo.scale-400.png and /dev/null differ diff --git a/SB/Assets/Tiles/Wide310x150Logo.scale-100.png b/SB/Assets/Tiles/Wide310x150Logo.scale-100.png deleted file mode 100644 index 277d9162..00000000 Binary files a/SB/Assets/Tiles/Wide310x150Logo.scale-100.png and /dev/null differ diff --git a/SB/Assets/Tiles/Wide310x150Logo.scale-200.png b/SB/Assets/Tiles/Wide310x150Logo.scale-200.png deleted file mode 100644 index 1d502c99..00000000 Binary files a/SB/Assets/Tiles/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/SB/Assets/Tiles/Wide310x150Logo.scale-400.png b/SB/Assets/Tiles/Wide310x150Logo.scale-400.png deleted file mode 100644 index 121cc174..00000000 Binary files a/SB/Assets/Tiles/Wide310x150Logo.scale-400.png and /dev/null differ diff --git a/SB/Assets/Wide310x150Logo.scale-200.png b/SB/Assets/Wide310x150Logo.scale-200.png deleted file mode 100644 index 1d502c99..00000000 Binary files a/SB/Assets/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/SB/MainPage.xaml b/SB/MainPage.xaml deleted file mode 100644 index 24e90932..00000000 --- a/SB/MainPage.xaml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - diff --git a/SB/MainPage.xaml.cs b/SB/MainPage.xaml.cs deleted file mode 100644 index e037f976..00000000 --- a/SB/MainPage.xaml.cs +++ /dev/null @@ -1,43 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices.WindowsRuntime; -using Windows.Foundation; -using Windows.Foundation.Collections; -using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Controls; -using Microsoft.UI.Xaml.Controls.Primitives; -using Microsoft.UI.Xaml.Data; -using Microsoft.UI.Xaml.Input; -using Microsoft.UI.Xaml.Media; -using Microsoft.UI.Xaml.Navigation; - -// To learn more about WinUI, the WinUI project structure, -// and more about our project templates, see: http://aka.ms/winui-project-info. - -namespace syncfusion.samplebrowser.winui -{ - /// - /// An empty page that can be used on its own or navigated to within a Frame. - /// - public sealed partial class MainPage : Page - { - public MainPage() - { - this.InitializeComponent(); - } - - private void myButton_Click(object sender, RoutedEventArgs e) - { - myButton.Content = "Clicked"; - } - } -} diff --git a/SB/MainWindow.xaml b/SB/MainWindow.xaml deleted file mode 100644 index 3f6279d5..00000000 --- a/SB/MainWindow.xaml +++ /dev/null @@ -1,11 +0,0 @@ - - - - diff --git a/SB/MainWindow.xaml.cs b/SB/MainWindow.xaml.cs deleted file mode 100644 index c3ad2c8f..00000000 --- a/SB/MainWindow.xaml.cs +++ /dev/null @@ -1,61 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Controls; -using Microsoft.UI.Xaml.Controls.Primitives; -using Microsoft.UI.Xaml.Data; -using Microsoft.UI.Xaml.Input; -using Microsoft.UI.Xaml.Media; -using Microsoft.UI.Xaml.Navigation; -using Syncfusion.DemosCommon.WinUI; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices; -using System.Runtime.InteropServices.WindowsRuntime; -using Windows.Foundation; -using Windows.Foundation.Collections; -using WinRT; - -// To learn more about WinUI, the WinUI project structure, -// and more about our project templates, see: http://aka.ms/winui-project-info. - -namespace Syncfusion.SampleBrowser.WinUI -{ - /// - /// An empty window that can be used on its own or navigated to within a Frame. - /// - public sealed partial class MainWindow : Window - { - public MainWindow() - { - this.InitializeComponent(); - this.Title = "Syncfusion Controls Gallery for WinUI Desktop"; - LoadIcon("App.ico"); - } - - private void LoadIcon(string iconName) - { - //Get the Window's HWND - var hwnd = (this as MainWindow).As().WindowHandle; - IntPtr hIcon = PInvoke.User32.LoadImage(IntPtr.Zero, iconName, - PInvoke.User32.ImageType.IMAGE_ICON, 16, 16, PInvoke.User32.LoadImageFlags.LR_LOADFROMFILE); - - PInvoke.User32.SendMessage(hwnd, PInvoke.User32.WindowMessage.WM_SETICON, (IntPtr)0, hIcon); - } - } - - [ComImport] - [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] - [Guid("EECDBF0E-BAE9-4CB6-A68E-9598E1CB57BB")] - internal interface IWindowNative - { - IntPtr WindowHandle { get; } - } -} diff --git a/SB/Package.appxmanifest b/SB/Package.appxmanifest deleted file mode 100644 index 1fdba5dc..00000000 --- a/SB/Package.appxmanifest +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - Syncfusion Controls Gallery for WinUI UWP - Syncfusion - Assets\Tiles\StoreLogo.png - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/SB/Products.xml b/SB/Products.xml deleted file mode 100644 index 7656e7ee..00000000 --- a/SB/Products.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/SB/Properties/AssemblyInfo.cs b/SB/Properties/AssemblyInfo.cs deleted file mode 100644 index 27b8a67b..00000000 --- a/SB/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("syncfusion.samplebrowser.winui")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Syncfusion Inc.")] -[assembly: AssemblyProduct("syncfusion.samplebrowser.winui")] -[assembly: AssemblyCopyright("Copyright © 2001-2024 Syncfusion Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("25.2.3")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: ComVisible(false)] \ No newline at end of file diff --git a/SB/Properties/Default.rd.xml b/SB/Properties/Default.rd.xml deleted file mode 100644 index af00722c..00000000 --- a/SB/Properties/Default.rd.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/LockScreenLogo.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/LockScreenLogo.scale-200.png deleted file mode 100644 index 0bcb25b2..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/LockScreenLogo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/SplashScreen.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/SplashScreen.scale-200.png deleted file mode 100644 index 50c04eeb..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/SplashScreen.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Square150x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Square150x150Logo.scale-200.png deleted file mode 100644 index a496976c..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Square44x44Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Square44x44Logo.scale-200.png deleted file mode 100644 index e427f719..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png deleted file mode 100644 index f6c02ce9..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/StoreLogo.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/StoreLogo.png deleted file mode 100644 index 9e4b0328..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/StoreLogo.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/LargeTile.scale-100.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/LargeTile.scale-100.png deleted file mode 100644 index ae1cfbab..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/LargeTile.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/LargeTile.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/LargeTile.scale-200.png deleted file mode 100644 index fd6bde0a..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/LargeTile.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/LargeTile.scale-400.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/LargeTile.scale-400.png deleted file mode 100644 index 60cafde9..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/LargeTile.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SmallTile.scale-100.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SmallTile.scale-100.png deleted file mode 100644 index 5879e1e9..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SmallTile.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SmallTile.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SmallTile.scale-200.png deleted file mode 100644 index da1d8201..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SmallTile.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SmallTile.scale-400.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SmallTile.scale-400.png deleted file mode 100644 index 253930fe..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SmallTile.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-100.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-100.png deleted file mode 100644 index 7cba535b..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-125.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-125.png deleted file mode 100644 index 3548ecd2..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-125.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-150.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-150.png deleted file mode 100644 index 73592b8d..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-150.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-200.png deleted file mode 100644 index 34d0edab..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-400.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-400.png deleted file mode 100644 index d804373f..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/SplashScreen.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square150x150Logo.scale-100.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square150x150Logo.scale-100.png deleted file mode 100644 index 506473ae..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square150x150Logo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square150x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square150x150Logo.scale-200.png deleted file mode 100644 index a496976c..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square150x150Logo.scale-400.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square150x150Logo.scale-400.png deleted file mode 100644 index 6fa29691..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square150x150Logo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square44x44Logo.scale-100.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square44x44Logo.scale-100.png deleted file mode 100644 index 3e15a71a..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square44x44Logo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square44x44Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square44x44Logo.scale-200.png deleted file mode 100644 index 654354e6..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square44x44Logo.scale-400.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square44x44Logo.scale-400.png deleted file mode 100644 index af2bfaa5..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Square44x44Logo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-100.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-100.png deleted file mode 100644 index 9e4b0328..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-125.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-125.png deleted file mode 100644 index af1c25f5..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-125.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-150.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-150.png deleted file mode 100644 index 391ef12a..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-150.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-200.png deleted file mode 100644 index ff4d7a92..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-400.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-400.png deleted file mode 100644 index 8aa67d06..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/StoreLogo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Wide310x150Logo.scale-100.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Wide310x150Logo.scale-100.png deleted file mode 100644 index 277d9162..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Wide310x150Logo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Wide310x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Wide310x150Logo.scale-200.png deleted file mode 100644 index 1d502c99..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Wide310x150Logo.scale-400.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Wide310x150Logo.scale-400.png deleted file mode 100644 index 121cc174..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Tiles/Wide310x150Logo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Wide310x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Wide310x150Logo.scale-200.png deleted file mode 100644 index 1d502c99..00000000 Binary files a/SB/SampleBrowser.WinUI_Net60 (Package)/Images/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/Package.appxmanifest b/SB/SampleBrowser.WinUI_Net60 (Package)/Package.appxmanifest deleted file mode 100644 index 4df55dde..00000000 --- a/SB/SampleBrowser.WinUI_Net60 (Package)/Package.appxmanifest +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - Syncfusion Controls Gallery for WinUI Desktop - Syncfusion - Images\Tiles\StoreLogo.png - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/SB/SampleBrowser.WinUI_Net60 (Package)/SampleBrowser.WinUI_Net60 (Package).wapproj b/SB/SampleBrowser.WinUI_Net60 (Package)/SampleBrowser.WinUI_Net60 (Package).wapproj deleted file mode 100644 index c0b82af9..00000000 --- a/SB/SampleBrowser.WinUI_Net60 (Package)/SampleBrowser.WinUI_Net60 (Package).wapproj +++ /dev/null @@ -1,102 +0,0 @@ - - - - 15.0 - - - - Debug - x86 - - - Release - x86 - - - Debug - x64 - - - Release - x64 - - - Debug - arm64 - - - Release - arm64 - - - - $(MSBuildExtensionsPath)\Microsoft\DesktopBridge\ - SampleBrowser.WinUI_Net60\ - false - - - - ad778662-71f2-43b1-a319-3b832e3767b4 - 10.0.19041.0 - 10.0.17763.0 - net6.0-windows$(TargetPlatformVersion);$(AssetTargetFallback) - en-US - false - ..\SampleBrowser.WinUI_Net60.csproj - - - - Designer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - Properties\PublishProfiles\win10-$(Platform).pubxml - - - - - - - - - \ No newline at end of file diff --git a/SB/SampleBrowser.WinUI_Net60.csproj b/SB/SampleBrowser.WinUI_Net60.csproj deleted file mode 100644 index 61016c4a..00000000 --- a/SB/SampleBrowser.WinUI_Net60.csproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net6.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.SampleBrowser.WinUI - Syncfusion.SampleBrowser.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64;win10-x86 - true - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE;Main_SB; - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE;Main_SB; - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE;Main_SB; - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE;Main_SB; - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - - - - - - - - - - - - - - - - - App.xaml - - - MainWindow.xaml - - - - - - PreserveNewest - - - - - - - - - diff --git a/SB/SampleBrowser.WinUI_Net60.sln b/SB/SampleBrowser.WinUI_Net60.sln deleted file mode 100644 index ef26fd9a..00000000 --- a/SB/SampleBrowser.WinUI_Net60.sln +++ /dev/null @@ -1,49 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.0.32014.148 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "SampleBrowser.WinUI_Net60 (Package)", "SampleBrowser.WinUI_Net60 (Package)\SampleBrowser.WinUI_Net60 (Package).wapproj", "{AD778662-71F2-43B1-A319-3B832E3767B4}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleBrowser.WinUI_Net60", "SampleBrowser.WinUI_Net60.csproj", "{A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {AD778662-71F2-43B1-A319-3B832E3767B4}.Debug|x64.ActiveCfg = Debug|x64 - {AD778662-71F2-43B1-A319-3B832E3767B4}.Debug|x64.Build.0 = Debug|x64 - {AD778662-71F2-43B1-A319-3B832E3767B4}.Debug|x64.Deploy.0 = Debug|x64 - {AD778662-71F2-43B1-A319-3B832E3767B4}.Debug|x86.ActiveCfg = Debug|x86 - {AD778662-71F2-43B1-A319-3B832E3767B4}.Debug|x86.Build.0 = Debug|x86 - {AD778662-71F2-43B1-A319-3B832E3767B4}.Debug|x86.Deploy.0 = Debug|x86 - {AD778662-71F2-43B1-A319-3B832E3767B4}.Release|x64.ActiveCfg = Release|x64 - {AD778662-71F2-43B1-A319-3B832E3767B4}.Release|x64.Build.0 = Release|x64 - {AD778662-71F2-43B1-A319-3B832E3767B4}.Release|x64.Deploy.0 = Release|x64 - {AD778662-71F2-43B1-A319-3B832E3767B4}.Release|x86.ActiveCfg = Release|x86 - {AD778662-71F2-43B1-A319-3B832E3767B4}.Release|x86.Build.0 = Release|x86 - {AD778662-71F2-43B1-A319-3B832E3767B4}.Release|x86.Deploy.0 = Release|x86 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Debug|x64.ActiveCfg = Debug|x64 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Debug|x64.Build.0 = Debug|x64 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Debug|x64.Deploy.0 = Debug|x64 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Debug|x86.ActiveCfg = Debug|x86 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Debug|x86.Build.0 = Debug|x86 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Debug|x86.Deploy.0 = Debug|x86 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Release|x64.ActiveCfg = Release|x64 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Release|x64.Build.0 = Release|x64 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Release|x64.Deploy.0 = Release|x64 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Release|x86.ActiveCfg = Release|x86 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Release|x86.Build.0 = Release|x86 - {A4F2B175-37D7-41D3-84A3-FE4BB7CD3A5C}.Release|x86.Deploy.0 = Release|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {42A88804-6C88-45AD-BC83-9D90BA2341F9} - EndGlobalSection -EndGlobal diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/LockScreenLogo.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/LockScreenLogo.scale-200.png deleted file mode 100644 index 0bcb25b2..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/LockScreenLogo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/SplashScreen.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/SplashScreen.scale-200.png deleted file mode 100644 index 50c04eeb..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/SplashScreen.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Square150x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Square150x150Logo.scale-200.png deleted file mode 100644 index a496976c..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Square44x44Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Square44x44Logo.scale-200.png deleted file mode 100644 index e427f719..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png deleted file mode 100644 index f6c02ce9..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/StoreLogo.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/StoreLogo.png deleted file mode 100644 index 9e4b0328..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/StoreLogo.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/LargeTile.scale-100.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/LargeTile.scale-100.png deleted file mode 100644 index ae1cfbab..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/LargeTile.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/LargeTile.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/LargeTile.scale-200.png deleted file mode 100644 index fd6bde0a..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/LargeTile.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/LargeTile.scale-400.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/LargeTile.scale-400.png deleted file mode 100644 index 60cafde9..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/LargeTile.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SmallTile.scale-100.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SmallTile.scale-100.png deleted file mode 100644 index 5879e1e9..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SmallTile.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SmallTile.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SmallTile.scale-200.png deleted file mode 100644 index da1d8201..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SmallTile.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SmallTile.scale-400.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SmallTile.scale-400.png deleted file mode 100644 index 253930fe..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SmallTile.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-100.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-100.png deleted file mode 100644 index 7cba535b..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-125.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-125.png deleted file mode 100644 index 3548ecd2..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-125.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-150.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-150.png deleted file mode 100644 index 73592b8d..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-150.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-200.png deleted file mode 100644 index 34d0edab..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-400.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-400.png deleted file mode 100644 index d804373f..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/SplashScreen.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square150x150Logo.scale-100.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square150x150Logo.scale-100.png deleted file mode 100644 index 506473ae..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square150x150Logo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square150x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square150x150Logo.scale-200.png deleted file mode 100644 index a496976c..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square150x150Logo.scale-400.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square150x150Logo.scale-400.png deleted file mode 100644 index 6fa29691..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square150x150Logo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square44x44Logo.scale-100.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square44x44Logo.scale-100.png deleted file mode 100644 index 3e15a71a..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square44x44Logo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square44x44Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square44x44Logo.scale-200.png deleted file mode 100644 index 654354e6..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square44x44Logo.scale-400.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square44x44Logo.scale-400.png deleted file mode 100644 index af2bfaa5..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Square44x44Logo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-100.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-100.png deleted file mode 100644 index 9e4b0328..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-125.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-125.png deleted file mode 100644 index af1c25f5..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-125.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-150.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-150.png deleted file mode 100644 index 391ef12a..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-150.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-200.png deleted file mode 100644 index ff4d7a92..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-400.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-400.png deleted file mode 100644 index 8aa67d06..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/StoreLogo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Wide310x150Logo.scale-100.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Wide310x150Logo.scale-100.png deleted file mode 100644 index 277d9162..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Wide310x150Logo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Wide310x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Wide310x150Logo.scale-200.png deleted file mode 100644 index 1d502c99..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Wide310x150Logo.scale-400.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Wide310x150Logo.scale-400.png deleted file mode 100644 index 121cc174..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Tiles/Wide310x150Logo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Wide310x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Wide310x150Logo.scale-200.png deleted file mode 100644 index 1d502c99..00000000 Binary files a/SB/SampleBrowser.WinUI_Net70 (Package)/Images/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/Package.appxmanifest b/SB/SampleBrowser.WinUI_Net70 (Package)/Package.appxmanifest deleted file mode 100644 index ec828c4c..00000000 --- a/SB/SampleBrowser.WinUI_Net70 (Package)/Package.appxmanifest +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - Syncfusion Controls Gallery for WinUI Desktop - Syncfusion - Images\Tiles\StoreLogo.png - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/SB/SampleBrowser.WinUI_Net70 (Package)/SampleBrowser.WinUI_Net70 (Package).wapproj b/SB/SampleBrowser.WinUI_Net70 (Package)/SampleBrowser.WinUI_Net70 (Package).wapproj deleted file mode 100644 index 0310b199..00000000 --- a/SB/SampleBrowser.WinUI_Net70 (Package)/SampleBrowser.WinUI_Net70 (Package).wapproj +++ /dev/null @@ -1,102 +0,0 @@ - - - - 15.0 - - - - Debug - x86 - - - Release - x86 - - - Debug - x64 - - - Release - x64 - - - Debug - arm64 - - - Release - arm64 - - - - $(MSBuildExtensionsPath)\Microsoft\DesktopBridge\ - SampleBrowser.WinUI_Net70\ - false - - - - 81270098-bcd2-4285-9701-019f936cbd07 - 10.0.19041.0 - net7.0-windows$(TargetPlatformVersion);$(AssetTargetFallback) - 10.0.17763.0 - en-US - false - ..\SampleBrowser.WinUI_Net70.csproj - - - - Designer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - Properties\PublishProfiles\win10-$(Platform).pubxml - - - - - - - - - \ No newline at end of file diff --git a/SB/SampleBrowser.WinUI_Net70.csproj b/SB/SampleBrowser.WinUI_Net70.csproj deleted file mode 100644 index 1000bbbf..00000000 --- a/SB/SampleBrowser.WinUI_Net70.csproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net7.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.SampleBrowser.WinUI - Syncfusion.SampleBrowser.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64;win10-x86 - true - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE;Main_SB; - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE;Main_SB; - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE;Main_SB; - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE;Main_SB; - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - - - - - - - - - - - - - - - - - App.xaml - - - MainWindow.xaml - - - - - - PreserveNewest - - - - - - - - - diff --git a/SB/SampleBrowser.WinUI_Net70.sln b/SB/SampleBrowser.WinUI_Net70.sln deleted file mode 100644 index 0169606c..00000000 --- a/SB/SampleBrowser.WinUI_Net70.sln +++ /dev/null @@ -1,46 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.4.32804.182 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "SampleBrowser.WinUI_Net70 (Package)", "SampleBrowser.WinUI_Net70 (Package)\SampleBrowser.WinUI_Net70 (Package).wapproj", "{81270098-BCD2-4285-9701-019F936CBD07}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleBrowser.WinUI_Net70", "SampleBrowser.WinUI_Net70.csproj", "{56A6B728-39B7-4E65-B16C-02F0A0B8B268}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x64.ActiveCfg = Debug|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x64.Build.0 = Debug|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x64.Deploy.0 = Debug|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x86.ActiveCfg = Debug|x86 - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x86.Build.0 = Debug|x86 - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x86.Deploy.0 = Debug|x86 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x64.ActiveCfg = Release|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x64.Build.0 = Release|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x64.Deploy.0 = Release|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x86.ActiveCfg = Release|x86 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x86.Build.0 = Release|x86 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x86.Deploy.0 = Release|x86 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Debug|x64.ActiveCfg = Debug|x64 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Debug|x64.Build.0 = Debug|x64 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Debug|x64.Deploy.0 = Debug|x64 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Debug|x86.ActiveCfg = Debug|x86 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Debug|x86.Build.0 = Debug|x86 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Release|x64.ActiveCfg = Release|x64 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Release|x64.Build.0 = Release|x64 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Release|x86.ActiveCfg = Release|x86 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Release|x86.Build.0 = Release|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {2029FED9-6C44-4AE4-B1C1-AB37268C41A9} - EndGlobalSection -EndGlobal diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/LockScreenLogo.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/LockScreenLogo.scale-200.png deleted file mode 100644 index 0bcb25b2..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/LockScreenLogo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/SplashScreen.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/SplashScreen.scale-200.png deleted file mode 100644 index 50c04eeb..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/SplashScreen.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Square150x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Square150x150Logo.scale-200.png deleted file mode 100644 index a496976c..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Square44x44Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Square44x44Logo.scale-200.png deleted file mode 100644 index e427f719..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png deleted file mode 100644 index f6c02ce9..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/StoreLogo.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/StoreLogo.png deleted file mode 100644 index 9e4b0328..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/StoreLogo.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/LargeTile.scale-100.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/LargeTile.scale-100.png deleted file mode 100644 index ae1cfbab..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/LargeTile.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/LargeTile.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/LargeTile.scale-200.png deleted file mode 100644 index fd6bde0a..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/LargeTile.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/LargeTile.scale-400.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/LargeTile.scale-400.png deleted file mode 100644 index 60cafde9..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/LargeTile.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SmallTile.scale-100.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SmallTile.scale-100.png deleted file mode 100644 index 5879e1e9..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SmallTile.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SmallTile.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SmallTile.scale-200.png deleted file mode 100644 index da1d8201..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SmallTile.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SmallTile.scale-400.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SmallTile.scale-400.png deleted file mode 100644 index 253930fe..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SmallTile.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-100.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-100.png deleted file mode 100644 index 7cba535b..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-125.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-125.png deleted file mode 100644 index 3548ecd2..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-125.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-150.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-150.png deleted file mode 100644 index 73592b8d..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-150.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-200.png deleted file mode 100644 index 34d0edab..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-400.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-400.png deleted file mode 100644 index d804373f..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/SplashScreen.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square150x150Logo.scale-100.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square150x150Logo.scale-100.png deleted file mode 100644 index 506473ae..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square150x150Logo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square150x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square150x150Logo.scale-200.png deleted file mode 100644 index a496976c..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square150x150Logo.scale-400.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square150x150Logo.scale-400.png deleted file mode 100644 index 6fa29691..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square150x150Logo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square44x44Logo.scale-100.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square44x44Logo.scale-100.png deleted file mode 100644 index 3e15a71a..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square44x44Logo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square44x44Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square44x44Logo.scale-200.png deleted file mode 100644 index 654354e6..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square44x44Logo.scale-400.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square44x44Logo.scale-400.png deleted file mode 100644 index af2bfaa5..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Square44x44Logo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-100.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-100.png deleted file mode 100644 index 9e4b0328..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-125.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-125.png deleted file mode 100644 index af1c25f5..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-125.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-150.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-150.png deleted file mode 100644 index 391ef12a..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-150.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-200.png deleted file mode 100644 index ff4d7a92..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-400.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-400.png deleted file mode 100644 index 8aa67d06..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/StoreLogo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Wide310x150Logo.scale-100.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Wide310x150Logo.scale-100.png deleted file mode 100644 index 277d9162..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Wide310x150Logo.scale-100.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Wide310x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Wide310x150Logo.scale-200.png deleted file mode 100644 index 1d502c99..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Wide310x150Logo.scale-400.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Wide310x150Logo.scale-400.png deleted file mode 100644 index 121cc174..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Tiles/Wide310x150Logo.scale-400.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Wide310x150Logo.scale-200.png b/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Wide310x150Logo.scale-200.png deleted file mode 100644 index 1d502c99..00000000 Binary files a/SB/SampleBrowser.WinUI_Net80 (Package)/Images/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/Package.appxmanifest b/SB/SampleBrowser.WinUI_Net80 (Package)/Package.appxmanifest deleted file mode 100644 index 414e4318..00000000 --- a/SB/SampleBrowser.WinUI_Net80 (Package)/Package.appxmanifest +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - Syncfusion Controls Gallery for WinUI Desktop - Syncfusion - Images\Tiles\StoreLogo.png - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/SB/SampleBrowser.WinUI_Net80 (Package)/SampleBrowser.WinUI_Net80 (Package).wapproj b/SB/SampleBrowser.WinUI_Net80 (Package)/SampleBrowser.WinUI_Net80 (Package).wapproj deleted file mode 100644 index 85c7b0b5..00000000 --- a/SB/SampleBrowser.WinUI_Net80 (Package)/SampleBrowser.WinUI_Net80 (Package).wapproj +++ /dev/null @@ -1,102 +0,0 @@ - - - - 15.0 - - - - Debug - x86 - - - Release - x86 - - - Debug - x64 - - - Release - x64 - - - Debug - arm64 - - - Release - arm64 - - - - $(MSBuildExtensionsPath)\Microsoft\DesktopBridge\ - SampleBrowser.WinUI_Net80\ - false - - - - 81270098-bcd2-4285-9701-019f936cbd07 - 10.0.19041.0 - net8.0-windows$(TargetPlatformVersion);$(AssetTargetFallback) - 10.0.17763.0 - en-US - false - ..\SampleBrowser.WinUI_Net80.csproj - - - - Designer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - Properties\PublishProfiles\win10-$(Platform).pubxml - - - - - - - - - \ No newline at end of file diff --git a/SB/SampleBrowser.WinUI_Net80.csproj b/SB/SampleBrowser.WinUI_Net80.csproj deleted file mode 100644 index 69316292..00000000 --- a/SB/SampleBrowser.WinUI_Net80.csproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net8.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.SampleBrowser.WinUI - Syncfusion.SampleBrowser.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64 - true - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE;Main_SB; - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE;Main_SB; - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE;Main_SB; - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE;Main_SB; - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - - - - - - - - - - - - - - - - - App.xaml - - - MainWindow.xaml - - - - - - PreserveNewest - - - - - - - - - diff --git a/SB/SampleBrowser.WinUI_Net80.sln b/SB/SampleBrowser.WinUI_Net80.sln deleted file mode 100644 index 30148c62..00000000 --- a/SB/SampleBrowser.WinUI_Net80.sln +++ /dev/null @@ -1,46 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.8.226.21692 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "SampleBrowser.WinUI_Net80 (Package)", "SampleBrowser.WinUI_Net80 (Package)\SampleBrowser.WinUI_Net80 (Package).wapproj", "{81270098-BCD2-4285-9701-019F936CBD07}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleBrowser.WinUI_Net80", "SampleBrowser.WinUI_Net80.csproj", "{56A6B728-39B7-4E65-B16C-02F0A0B8B268}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x64.ActiveCfg = Debug|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x64.Build.0 = Debug|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x64.Deploy.0 = Debug|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x86.ActiveCfg = Debug|x86 - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x86.Build.0 = Debug|x86 - {81270098-BCD2-4285-9701-019F936CBD07}.Debug|x86.Deploy.0 = Debug|x86 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x64.ActiveCfg = Release|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x64.Build.0 = Release|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x64.Deploy.0 = Release|x64 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x86.ActiveCfg = Release|x86 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x86.Build.0 = Release|x86 - {81270098-BCD2-4285-9701-019F936CBD07}.Release|x86.Deploy.0 = Release|x86 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Debug|x64.ActiveCfg = Debug|x64 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Debug|x64.Build.0 = Debug|x64 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Debug|x64.Deploy.0 = Debug|x64 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Debug|x86.ActiveCfg = Debug|x86 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Debug|x86.Build.0 = Debug|x86 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Release|x64.ActiveCfg = Release|x64 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Release|x64.Build.0 = Release|x64 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Release|x86.ActiveCfg = Release|x86 - {56A6B728-39B7-4E65-B16C-02F0A0B8B268}.Release|x86.Build.0 = Release|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {2029FED9-6C44-4AE4-B1C1-AB37268C41A9} - EndGlobalSection -EndGlobal diff --git a/SB/SampleConfiguration.cs b/SB/SampleConfiguration.cs deleted file mode 100644 index c9ac127a..00000000 --- a/SB/SampleConfiguration.cs +++ /dev/null @@ -1,36 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -namespace Syncfusion.SampleBrowser.WinUI -{ - public class SamplesConfiguration - { - public SamplesConfiguration() - { - new DataGridDemos.WinUI.SamplesConfiguration(); - new TreeGridDemos.WinUI.SamplesConfiguration(); - new ChartDemos.WinUI.SamplesConfiguration(); - new RadialGaugeDemos.WinUI.SamplesConfiguration(); - new LinearGaugeDemos.WinUI.SamplesConfiguration(); - new BarcodeDemos.WinUI.SamplesConfiguration(); - new RibbonDemos.WinUI.SamplesConfiguration(); - new TreeViewDemos.WinUI.SamplesConfiguration(); - new SchedulerDemos.WinUI.SamplesConfiguration(); - new SliderDemos.WinUI.SamplesConfiguration(); - new AvatarViewDemos.WinUI.SamplesConfiguration(); - new EditorDemos.WinUI.SamplesConfiguration(); - new CalendarDemos.WinUI.SamplesConfiguration(); - new ShadowDemos.WinUI.SamplesConfiguration(); - new ShimmerDemos.WinUI.SamplesConfiguration(); - new NotificationDemos.WinUI.SamplesConfiguration(); - new DocIODemos.WinUI.SamplesConfiguration(); - new PdfDemos.WinUI.SamplesConfiguration(); - new PresentationDemos.WinUI.SamplesConfiguration(); - new XlsIODemos.WinUI.SamplesConfiguration(); - } - } -} diff --git a/SB/app.manifest b/SB/app.manifest deleted file mode 100644 index c1c808e9..00000000 --- a/SB/app.manifest +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - true/PM - PerMonitorV2, PerMonitor - - - diff --git a/SB/syncfusion.pfx b/SB/syncfusion.pfx deleted file mode 100644 index 9612baa8..00000000 Binary files a/SB/syncfusion.pfx and /dev/null differ diff --git a/SB/syncfusion.samplebrowser.props b/SB/syncfusion.samplebrowser.props deleted file mode 100644 index f37adc0f..00000000 --- a/SB/syncfusion.samplebrowser.props +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/avatarview/App.xaml b/avatarview/App.xaml deleted file mode 100644 index 0ac41463..00000000 --- a/avatarview/App.xaml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/avatarview/App.xaml.cs b/avatarview/App.xaml.cs deleted file mode 100644 index 096441b7..00000000 --- a/avatarview/App.xaml.cs +++ /dev/null @@ -1,106 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices.WindowsRuntime; -using Windows.ApplicationModel; -using Windows.ApplicationModel.Activation; -using Windows.Foundation; -using Windows.Foundation.Collections; -using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Controls; -using Microsoft.UI.Xaml.Controls.Primitives; -using Microsoft.UI.Xaml.Data; -using Microsoft.UI.Xaml.Input; -using Microsoft.UI.Xaml.Media; -using Microsoft.UI.Xaml.Navigation; -using Windows.ApplicationModel.Core; -using Syncfusion.DemosCommon.WinUI; - -// To learn more about WinUI, the WinUI project structure, -// and more about our project templates, see: http://aka.ms/winui-project-info. - -namespace Syncfusion.AvatarViewDemos.WinUI -{ - /// - /// Provides application-specific behavior to supplement the default Application class. - /// - sealed partial class App : Application - { - /// - /// Initializes the singleton application object. This is the first line of authored code - /// executed, and as such is the logical equivalent of main() or WinMain(). - /// - public App() - { - this.InitializeComponent(); - } - - /// - /// Invoked when the application is launched normally by the end user. Other entry points - /// will be used such as when the application is launched to open a specific file. - /// - /// Details about the launch request and process. - protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs e) - { - m_window = new MainWindow(); - m_window.Activate(); - Frame rootFrame = m_window.Content as Frame; - - - // Do not repeat app initialization when the Window already has content, - // just ensure that the window is active - if (rootFrame == null) - { - // Create a Frame to act as the navigation context and navigate to the first page - rootFrame = new Frame(); - - // rootFrame.NavigationFailed += OnNavigationFailed; - - if (e != null && e.UWPLaunchActivatedEventArgs.PreviousExecutionState == ApplicationExecutionState.Terminated) - { - //TODO: Load state from previously suspended application - } - - // Place the frame in the current Window - m_window.Content = rootFrame; - } - - // if (args != null && args.UWPLaunchActivatedEventArgs.PrelaunchActivated == false) - { -#pragma warning disable CA1806 // Do not ignore method results - new SamplesConfiguration(); -#pragma warning restore CA1806 // Do not ignore method results - if (rootFrame.Content == null) - { - // When the navigation stack isn't restored navigate to the first page, - // configuring the new page by passing required information as a navigation - // parameter - rootFrame.Navigate(typeof(DemosCommon.WinUI.MainPage), e.Arguments); - } - // Ensure the current window is active - m_window.Activate(); - } - ThemeHelper.CurrentApplicationWindow = m_window; - } - - /// - /// Invoked when Navigation to a certain page fails - /// - /// The Frame which failed navigation - /// Details about the navigation failure - void OnNavigationFailed(object sender, NavigationFailedEventArgs e) - { - throw new Exception("Failed to load Page " + e.SourcePageType.FullName); - } - - private MainWindow m_window; - } -} diff --git a/avatarview/Assets/AvatarView/Finley.png b/avatarview/Assets/AvatarView/Finley.png deleted file mode 100644 index 337fd44a..00000000 Binary files a/avatarview/Assets/AvatarView/Finley.png and /dev/null differ diff --git a/avatarview/Assets/AvatarView/Gabriella.png b/avatarview/Assets/AvatarView/Gabriella.png deleted file mode 100644 index b467a402..00000000 Binary files a/avatarview/Assets/AvatarView/Gabriella.png and /dev/null differ diff --git a/avatarview/Assets/AvatarView/Jayden.png b/avatarview/Assets/AvatarView/Jayden.png deleted file mode 100644 index 34dbbbb1..00000000 Binary files a/avatarview/Assets/AvatarView/Jayden.png and /dev/null differ diff --git a/avatarview/Assets/AvatarView/Michael.png b/avatarview/Assets/AvatarView/Michael.png deleted file mode 100644 index f97651e1..00000000 Binary files a/avatarview/Assets/AvatarView/Michael.png and /dev/null differ diff --git a/avatarview/Assets/AvatarView/Oscar.png b/avatarview/Assets/AvatarView/Oscar.png deleted file mode 100644 index f3a33653..00000000 Binary files a/avatarview/Assets/AvatarView/Oscar.png and /dev/null differ diff --git a/avatarview/Assets/AvatarView/Person1.png b/avatarview/Assets/AvatarView/Person1.png deleted file mode 100644 index 6ff83f08..00000000 Binary files a/avatarview/Assets/AvatarView/Person1.png and /dev/null differ diff --git a/avatarview/Assets/AvatarView/Sarah.png b/avatarview/Assets/AvatarView/Sarah.png deleted file mode 100644 index d389a83a..00000000 Binary files a/avatarview/Assets/AvatarView/Sarah.png and /dev/null differ diff --git a/avatarview/Assets/AvatarView/Victoriya.png b/avatarview/Assets/AvatarView/Victoriya.png deleted file mode 100644 index 36ae517d..00000000 Binary files a/avatarview/Assets/AvatarView/Victoriya.png and /dev/null differ diff --git a/avatarview/Assets/AvatarView/gettingstarted_xaml.txt b/avatarview/Assets/AvatarView/gettingstarted_xaml.txt deleted file mode 100644 index b75d1261..00000000 --- a/avatarview/Assets/AvatarView/gettingstarted_xaml.txt +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/avatarview/Assets/AvatarView/groupview_xaml.txt b/avatarview/Assets/AvatarView/groupview_xaml.txt deleted file mode 100644 index 887ff7b4..00000000 --- a/avatarview/Assets/AvatarView/groupview_xaml.txt +++ /dev/null @@ -1,8 +0,0 @@ - - - \ No newline at end of file diff --git a/avatarview/Assets/LockScreenLogo.scale-200.png b/avatarview/Assets/LockScreenLogo.scale-200.png deleted file mode 100644 index 0bcb25b2..00000000 Binary files a/avatarview/Assets/LockScreenLogo.scale-200.png and /dev/null differ diff --git a/avatarview/Assets/SplashScreen.scale-200.png b/avatarview/Assets/SplashScreen.scale-200.png deleted file mode 100644 index 50c04eeb..00000000 Binary files a/avatarview/Assets/SplashScreen.scale-200.png and /dev/null differ diff --git a/avatarview/Assets/Square150x150Logo.scale-200.png b/avatarview/Assets/Square150x150Logo.scale-200.png deleted file mode 100644 index a496976c..00000000 Binary files a/avatarview/Assets/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/avatarview/Assets/Square44x44Logo.scale-200.png b/avatarview/Assets/Square44x44Logo.scale-200.png deleted file mode 100644 index e427f719..00000000 Binary files a/avatarview/Assets/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/avatarview/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/avatarview/Assets/Square44x44Logo.targetsize-24_altform-unplated.png deleted file mode 100644 index f6c02ce9..00000000 Binary files a/avatarview/Assets/Square44x44Logo.targetsize-24_altform-unplated.png and /dev/null differ diff --git a/avatarview/Assets/StoreLogo.png b/avatarview/Assets/StoreLogo.png deleted file mode 100644 index 9e4b0328..00000000 Binary files a/avatarview/Assets/StoreLogo.png and /dev/null differ diff --git a/avatarview/Assets/Wide310x150Logo.scale-200.png b/avatarview/Assets/Wide310x150Logo.scale-200.png deleted file mode 100644 index 1d502c99..00000000 Binary files a/avatarview/Assets/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/avatarview/MainWindow.xaml b/avatarview/MainWindow.xaml deleted file mode 100644 index c1f1e7cf..00000000 --- a/avatarview/MainWindow.xaml +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/avatarview/MainWindow.xaml.cs b/avatarview/MainWindow.xaml.cs deleted file mode 100644 index 452b3fbb..00000000 --- a/avatarview/MainWindow.xaml.cs +++ /dev/null @@ -1,26 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Microsoft.UI.Xaml; - -// To learn more about WinUI, the WinUI project structure, -// and more about our project templates, see: http://aka.ms/winui-project-info. - -namespace Syncfusion.AvatarViewDemos.WinUI -{ - /// - /// An empty window that can be used on its own or navigated to within a Frame. - /// - public sealed partial class MainWindow : Window - { - public MainWindow() - { - this.InitializeComponent(); - this.Title = "Syncfusion Avatar View Control Gallery for WinUI Desktop"; - } - } -} diff --git a/avatarview/Model/Model.cs b/avatarview/Model/Model.cs deleted file mode 100644 index 4eac54e4..00000000 --- a/avatarview/Model/Model.cs +++ /dev/null @@ -1,22 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Windows.UI; - -namespace Syncfusion.AvatarViewDemos.WinUI.Views.AvatarView -{ - public class Model - { - public string Name { get; set; } - - public Color BackgroundColor { get; set; } - - public Color InitialColor { get; set; } - - public string ImagePath { get; set; } - } -} diff --git a/avatarview/Package.appxmanifest b/avatarview/Package.appxmanifest deleted file mode 100644 index 5a8fe179..00000000 --- a/avatarview/Package.appxmanifest +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - Syncfusion WinUI Avatar View Control Gallery - Syncfusion - Assets\StoreLogo.png - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/avatarview/Properties/AssemblyInfo.cs b/avatarview/Properties/AssemblyInfo.cs deleted file mode 100644 index 8010a564..00000000 --- a/avatarview/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,37 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Syncfusion.AvatarViewDemos.WinUI")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Syncfusion Inc.")] -[assembly: AssemblyProduct("Syncfusion.AvatarViewDemos.WinUI")] -[assembly: AssemblyCopyright("Copyright © 2001-2024 Syncfusion Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("25.2.3")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: ComVisible(false)] - diff --git a/avatarview/Properties/Default.rd.xml b/avatarview/Properties/Default.rd.xml deleted file mode 100644 index af00722c..00000000 --- a/avatarview/Properties/Default.rd.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/avatarview/Properties/PublishProfiles/win10-arm64.pubxml b/avatarview/Properties/PublishProfiles/win10-arm64.pubxml deleted file mode 100644 index a132e44c..00000000 --- a/avatarview/Properties/PublishProfiles/win10-arm64.pubxml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - FileSystem - arm64 - win10-arm64 - bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ - true - False - False - True - - - \ No newline at end of file diff --git a/avatarview/Properties/PublishProfiles/win10-x64.pubxml b/avatarview/Properties/PublishProfiles/win10-x64.pubxml deleted file mode 100644 index 26ea7e55..00000000 --- a/avatarview/Properties/PublishProfiles/win10-x64.pubxml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - FileSystem - x64 - win10-x64 - bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ - true - False - False - True - - - \ No newline at end of file diff --git a/avatarview/Properties/PublishProfiles/win10-x86.pubxml b/avatarview/Properties/PublishProfiles/win10-x86.pubxml deleted file mode 100644 index 34d14d4d..00000000 --- a/avatarview/Properties/PublishProfiles/win10-x86.pubxml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - FileSystem - x86 - win10-x86 - bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ - true - False - False - True - - - \ No newline at end of file diff --git a/avatarview/Properties/launchSettings.json b/avatarview/Properties/launchSettings.json deleted file mode 100644 index 54dc5519..00000000 --- a/avatarview/Properties/launchSettings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "profiles": { - "Syncfusion.AvatarViewDemos.WinUI": { - "commandName": "MsixPackage" - } - } -} \ No newline at end of file diff --git a/avatarview/SamplesConfiguration.cs b/avatarview/SamplesConfiguration.cs deleted file mode 100644 index 97ae803f..00000000 --- a/avatarview/SamplesConfiguration.cs +++ /dev/null @@ -1,57 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Syncfusion.DemosCommon.WinUI; -using System; -using System.Collections.Generic; - -namespace Syncfusion.AvatarViewDemos.WinUI -{ - public class SamplesConfiguration - { - public SamplesConfiguration() - { - DemoInfo avatarViewGettingStarted = new DemoInfo() - { - Name = "Getting Started", - Category = "AvatarView", - Description = "This sample showcases the basic features such as avatar name, content type, initial type, visual styles and background in avatar view control.", - DemoView = typeof(Views.GettingStartedView), - DemoType =DemoTypes.None, - ShowInfoPanel = false, - }; - - DemoInfo avatarGroupView = new DemoInfo() - { - Name = "Group View", - Category = "AvatarView", - Description = "This sample showcases the various group view representations of avatar view control.", - DemoView = typeof(Views.GroupView), - DemoType = DemoTypes.None, - ShowInfoPanel = false, - }; - - var avatarView = new ControlInfo() - { - Control = DemoControl.SfAvatarView, - ControlCategory = ControlCategory.Miscellaneous, - ControlBadge = ControlBadge.None, - Description = "SfAvatarView is a graphical representation of the user image that allows you to customize the view by adding an image, background color, icon, text, etc.", - Glyph = "\uE726", - ImageSource = "AvatarView.png", - }; - avatarView.Demos.Add(avatarViewGettingStarted); - avatarView.Demos.Add(avatarGroupView); - - var controlInfo = new List() - { - avatarView, - }; - DemoHelper.ControlInfos.AddRange(controlInfo); - } - } -} diff --git a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net60.csproj b/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net60.csproj deleted file mode 100644 index e96a18f5..00000000 --- a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net60.csproj +++ /dev/null @@ -1,122 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net6.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.AvatarViewDemos.WinUI - Syncfusion.AvatarViewDemos.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64 - true - Properties\PublishProfiles\win10-$(Platform).pubxml - DEBUG;TRACE;NETFX_CORE - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE; - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - App.xaml - - - - - - MainWindow.xaml - - - - - GettingStartedView.xaml - - - GroupView.xaml - - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - - - - - diff --git a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net60.sln b/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net60.sln deleted file mode 100644 index b0dd5dd3..00000000 --- a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net60.sln +++ /dev/null @@ -1,83 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.0.32126.317 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.AvatarViewDemos.WinUI_Net60", "Syncfusion.AvatarViewDemos.WinUI_Net60.csproj", "{21C7A23D-D519-496C-BBF4-BB87DCF2C437}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.DemosCommon.WinUI_lib_Net60", "..\common\Syncfusion.DemosCommon.WinUI_lib_Net60.csproj", "{47411333-4885-4A74-855C-26FF5F33DFF8}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|Any CPU.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|Any CPU.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|Any CPU.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x64.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x64.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x86.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x86.Build.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|Any CPU.Build.0 = Debug|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x64.ActiveCfg = Debug|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x64.Build.0 = Debug|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x64.Deploy.0 = Debug|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x86.ActiveCfg = Debug|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x86.Build.0 = Debug|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|Any CPU.ActiveCfg = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|Any CPU.Build.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x64.ActiveCfg = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x64.Build.0 = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x86.ActiveCfg = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x86.Build.0 = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|Any CPU.ActiveCfg = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|Any CPU.Build.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|Any CPU.Deploy.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x64.ActiveCfg = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x64.Build.0 = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x64.Deploy.0 = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x86.ActiveCfg = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x86.Build.0 = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x86.Deploy.0 = Release|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x64.ActiveCfg = Debug|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x64.Build.0 = Debug|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x86.ActiveCfg = Debug|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x86.Build.0 = Debug|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|Any CPU.Build.0 = Release|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x64.ActiveCfg = Release|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x64.Build.0 = Release|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x86.ActiveCfg = Release|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x86.Build.0 = Release|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|Any CPU.ActiveCfg = Release-Xml|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|Any CPU.Build.0 = Release-Xml|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x64.ActiveCfg = Release-Xml|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x64.Build.0 = Release-Xml|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x86.ActiveCfg = Release-Xml|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x86.Build.0 = Release-Xml|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {22A9DA21-AC5B-44E5-89B7-A3CD0E48ECAE} - EndGlobalSection -EndGlobal \ No newline at end of file diff --git a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net70.csproj b/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net70.csproj deleted file mode 100644 index 42aacb09..00000000 --- a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net70.csproj +++ /dev/null @@ -1,122 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net7.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.AvatarViewDemos.WinUI - Syncfusion.AvatarViewDemos.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64 - true - Properties\PublishProfiles\win10-$(Platform).pubxml - DEBUG;TRACE;NETFX_CORE - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE; - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - App.xaml - - - - - - MainWindow.xaml - - - - - GettingStartedView.xaml - - - GroupView.xaml - - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - - - - - diff --git a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net70.sln b/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net70.sln deleted file mode 100644 index e983bd8d..00000000 --- a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net70.sln +++ /dev/null @@ -1,83 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.0.32126.317 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.AvatarViewDemos.WinUI_Net70", "Syncfusion.AvatarViewDemos.WinUI_Net70.csproj", "{21C7A23D-D519-496C-BBF4-BB87DCF2C437}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.DemosCommon.WinUI_lib_Net70", "..\common\Syncfusion.DemosCommon.WinUI_lib_Net70.csproj", "{47411333-4885-4A74-855C-26FF5F33DFF8}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|Any CPU.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|Any CPU.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|Any CPU.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x64.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x64.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x86.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x86.Build.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|Any CPU.Build.0 = Debug|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x64.ActiveCfg = Debug|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x64.Build.0 = Debug|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x64.Deploy.0 = Debug|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x86.ActiveCfg = Debug|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x86.Build.0 = Debug|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|Any CPU.ActiveCfg = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|Any CPU.Build.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x64.ActiveCfg = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x64.Build.0 = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x86.ActiveCfg = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x86.Build.0 = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|Any CPU.ActiveCfg = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|Any CPU.Build.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|Any CPU.Deploy.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x64.ActiveCfg = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x64.Build.0 = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x64.Deploy.0 = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x86.ActiveCfg = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x86.Build.0 = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x86.Deploy.0 = Release|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x64.ActiveCfg = Debug|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x64.Build.0 = Debug|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x86.ActiveCfg = Debug|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x86.Build.0 = Debug|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|Any CPU.Build.0 = Release|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x64.ActiveCfg = Release|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x64.Build.0 = Release|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x86.ActiveCfg = Release|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x86.Build.0 = Release|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|Any CPU.ActiveCfg = Release-Xml|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|Any CPU.Build.0 = Release-Xml|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x64.ActiveCfg = Release-Xml|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x64.Build.0 = Release-Xml|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x86.ActiveCfg = Release-Xml|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x86.Build.0 = Release-Xml|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {22A9DA21-AC5B-44E5-89B7-A3CD0E48ECAE} - EndGlobalSection -EndGlobal \ No newline at end of file diff --git a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net80.csproj b/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net80.csproj deleted file mode 100644 index b97f861a..00000000 --- a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net80.csproj +++ /dev/null @@ -1,123 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net8.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.AvatarViewDemos.WinUI - Syncfusion.AvatarViewDemos.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64 - true - Properties\PublishProfiles\win10-$(Platform).pubxml - DEBUG;TRACE;NETFX_CORE - true - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE; - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - App.xaml - - - - - - MainWindow.xaml - - - - - GettingStartedView.xaml - - - GroupView.xaml - - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - - - - - diff --git a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net80.sln b/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net80.sln deleted file mode 100644 index 9c1e7799..00000000 --- a/avatarview/Syncfusion.AvatarViewDemos.WinUI_Net80.sln +++ /dev/null @@ -1,83 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.8.226.21692 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.AvatarViewDemos.WinUI_Net80", "Syncfusion.AvatarViewDemos.WinUI_Net80.csproj", "{21C7A23D-D519-496C-BBF4-BB87DCF2C437}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.DemosCommon.WinUI_lib_Net80", "..\common\Syncfusion.DemosCommon.WinUI_lib_Net80.csproj", "{47411333-4885-4A74-855C-26FF5F33DFF8}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|Any CPU.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|Any CPU.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|Any CPU.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x64.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x64.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x86.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release-Xml|x86.Build.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|Any CPU.Build.0 = Debug|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x64.ActiveCfg = Debug|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x64.Build.0 = Debug|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x64.Deploy.0 = Debug|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x86.ActiveCfg = Debug|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Debug|x86.Build.0 = Debug|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|Any CPU.ActiveCfg = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|Any CPU.Build.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x64.ActiveCfg = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x64.Build.0 = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x86.ActiveCfg = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release|x86.Build.0 = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|Any CPU.ActiveCfg = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|Any CPU.Build.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|Any CPU.Deploy.0 = Release|Any CPU - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x64.ActiveCfg = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x64.Build.0 = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x64.Deploy.0 = Release|x64 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x86.ActiveCfg = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x86.Build.0 = Release|x86 - {21C7A23D-D519-496C-BBF4-BB87DCF2C437}.Release-Xml|x86.Deploy.0 = Release|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x64.ActiveCfg = Debug|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x64.Build.0 = Debug|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x86.ActiveCfg = Debug|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Debug|x86.Build.0 = Debug|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|Any CPU.Build.0 = Release|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x64.ActiveCfg = Release|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x64.Build.0 = Release|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x86.ActiveCfg = Release|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release|x86.Build.0 = Release|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|Any CPU.ActiveCfg = Release-Xml|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|Any CPU.Build.0 = Release-Xml|Any CPU - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x64.ActiveCfg = Release-Xml|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x64.Build.0 = Release-Xml|x64 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x86.ActiveCfg = Release-Xml|x86 - {A4AD7417-D5E1-4717-8EED-C7478A286391}.Release-Xml|x86.Build.0 = Release-Xml|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {22A9DA21-AC5B-44E5-89B7-A3CD0E48ECAE} - EndGlobalSection -EndGlobal \ No newline at end of file diff --git a/avatarview/ViewModel/AvatarViewModel.cs b/avatarview/ViewModel/AvatarViewModel.cs deleted file mode 100644 index 61f7e318..00000000 --- a/avatarview/ViewModel/AvatarViewModel.cs +++ /dev/null @@ -1,97 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Microsoft.UI; -using Syncfusion.AvatarViewDemos.WinUI.Views.AvatarView; -using System.Collections.ObjectModel; - -namespace Syncfusion.AvatarViewDemos.WinUI.Views.AvatarView -{ - public class AvatarViewModel - { - private string title; - - public string Title - { - get { return title; } - set { title = value; } - } - - private string participants; - - public string Participants - { - get { return participants; } - set { participants = value; } - } - - public ObservableCollection PeopleCollection { get; set; } - - public ObservableCollection GroupViewCollection { get; set; } - - public AvatarViewModel(int count) - { - PopulateModel(); - PopulatePeopleCollection(count); - } - - static int count = 0; - - private void PopulatePeopleCollection(int peopleCount) - { - PeopleCollection = new ObservableCollection(); - for (int i = 0; i < peopleCount; i++) - { - while (true) - { - if (GroupViewCollection.Count <= count) - count = 0; - - var person = GroupViewCollection[count++]; - if (!PeopleCollection.Contains(person)) - { - PeopleCollection.Add(person); - break; - } - } - } - - } - - private void PopulateModel() - { - string path = ""; -#if Main_SB - path = "AvatarView/"; -#endif - GroupViewCollection = new ObservableCollection - { - new Model() { Name = "Adriana", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xF2, 0xE9, 0xC8), InitialColor = ColorHelper.FromArgb(0xFF, 0x69, 0x53, 0x1C) }, - new Model() { Name = "Haven", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xD6, 0xE8, 0xD7), InitialColor = ColorHelper.FromArgb(0xFF, 0x24, 0x4F, 0x23) }, - new Model() { Name = "Karla", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xD6, 0xE3, 0xE8), InitialColor = ColorHelper.FromArgb(0xFF, 0x1A, 0x5F, 0x6F) }, - new Model() { Name = "Davis", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xF2, 0xE9, 0xC8), InitialColor = ColorHelper.FromArgb(0xFF, 0x69, 0x53, 0x1C) }, - new Model() { Name = "Clara", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xD8, 0xFF, 0xF6), InitialColor = ColorHelper.FromArgb(0xFF, 0x06, 0x79, 0x6B), ImagePath = path+"Assets/AvatarView/Sarah.png" }, - new Model() { Name = "Daleyza", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xD2, 0xF1, 0xEF), InitialColor = ColorHelper.FromArgb(0xFF, 0x1D, 0x7B, 0x6A) }, - new Model() { Name = "Ellie", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xF2, 0xE9, 0xC8), InitialColor = ColorHelper.FromArgb(0xFF, 0x69, 0x53, 0x1C) }, - new Model() { Name = "Finley", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xF0, 0xD7, 0xE9), InitialColor = ColorHelper.FromArgb(0xFF, 0x7B, 0x1D, 0x67) }, - new Model() { Name = "Jackson", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xD6, 0xE8, 0xD7), InitialColor = ColorHelper.FromArgb(0xFF, 0x24, 0x4F, 0x23) }, - new Model() { Name = "Jayden", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xD6, 0xE3, 0xE8), InitialColor = ColorHelper.FromArgb(0xFF, 0x1A, 0x5F, 0x6F) }, - new Model() { Name = "Kaylee", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xD8, 0xD7, 0xF0), InitialColor = ColorHelper.FromArgb(0xFF, 0x25, 0x1D, 0x7B), ImagePath = path+"Assets/AvatarView/Gabriella.png" }, - new Model() { Name = "Lucy", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xF0, 0xD7, 0xE9), InitialColor = ColorHelper.FromArgb(0xFF, 0x7B, 0x1D, 0x67), ImagePath = path+"Assets/AvatarView/Victoriya.png"}, - new Model() { Name = "Jaden", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xD2, 0xF1, 0xEF), InitialColor = ColorHelper.FromArgb(0xFF, 0x1D, 0x7B, 0x6A) }, - new Model() { Name = "George", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xFB, 0xE3, 0xDB), InitialColor = ColorHelper.FromArgb(0xFF, 0x7B, 0x2E, 0x1D),ImagePath = path+"Assets/AvatarView/Michael.png" }, - new Model() { Name = "Jayden", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xF2, 0xE9, 0xC8), InitialColor = ColorHelper.FromArgb(0xFF, 0x69, 0x53, 0x1C) }, - new Model() { Name = "Ellanaa", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xD6, 0xE8, 0xD7), InitialColor = ColorHelper.FromArgb(0xFF, 0x24, 0x4F, 0x23) }, - new Model() { Name = "James", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xD6, 0xE3, 0xE8), InitialColor = ColorHelper.FromArgb(0xFF, 0x1A, 0x5F, 0x6F), ImagePath = path+"Assets/AvatarView/Oscar.png" }, - new Model() { Name = "Zelda", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xD8, 0xD7, 0xF0), InitialColor = ColorHelper.FromArgb(0xFF, 0x25, 0x1D, 0x7B), ImagePath = path+"Assets/AvatarView/Jayden.png" }, - new Model() { Name = "Wren", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xF0, 0xD7, 0xE9), InitialColor = ColorHelper.FromArgb(0xFF, 0x7B, 0x1D, 0x67) }, - new Model() { Name = "Yamileth", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xF4, 0xFF, 0xD6), InitialColor = ColorHelper.FromArgb(0xFF, 0x42, 0x58, 0x03) }, - new Model() { Name = "Briley", BackgroundColor = ColorHelper.FromArgb(0xFF, 0xFB, 0xE3, 0xDB), InitialColor = ColorHelper.FromArgb(0xFF, 0x7B, 0x2E, 0x1D), ImagePath = path+"Assets/AvatarView/Finley.png" } - }; - } - } -} diff --git a/avatarview/ViewModel/ViewModel.cs b/avatarview/ViewModel/ViewModel.cs deleted file mode 100644 index 7a676826..00000000 --- a/avatarview/ViewModel/ViewModel.cs +++ /dev/null @@ -1,39 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System.Collections.ObjectModel; - -namespace Syncfusion.AvatarViewDemos.WinUI.Views.AvatarView -{ - public class ViewModel - { - private ObservableCollection listViewcollection; - - public ObservableCollection ListViewCollection - { - get { return listViewcollection; } - set { listViewcollection = value; } - } - - public ViewModel() - { - listViewcollection = new ObservableCollection - { - new AvatarViewModel(3) { Title = "My Teams", Participants = "3 Participants" }, - new AvatarViewModel(2) { Title = "Product Teams", Participants = "2 Participants" }, - new AvatarViewModel(5) { Title = "Sales Managers", Participants = "5 Participants" }, - new AvatarViewModel(2) { Title = "Marketing Managers", Participants = "2 Participants" }, - new AvatarViewModel(5) { Title = "Designers", Participants = "5 Participants" }, - new AvatarViewModel(2) { Title = "Old Project", Participants = "2 Participants" }, - new AvatarViewModel(4) { Title = "Process Managers", Participants = "4 Participants" }, - new AvatarViewModel(2) { Title = "Process Heads", Participants = "2 Participants" }, - new AvatarViewModel(8) { Title = "New Project", Participants = "8 Participants" }, - new AvatarViewModel(6) { Title = "Sales Heads", Participants = "6 Participants" } - }; - } - } -} diff --git a/avatarview/Views/GettingStartedView.xaml b/avatarview/Views/GettingStartedView.xaml deleted file mode 100644 index be3a5036..00000000 --- a/avatarview/Views/GettingStartedView.xaml +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/avatarview/Views/GettingStartedView.xaml.cs b/avatarview/Views/GettingStartedView.xaml.cs deleted file mode 100644 index dfd7e75a..00000000 --- a/avatarview/Views/GettingStartedView.xaml.cs +++ /dev/null @@ -1,226 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Microsoft.UI.Xaml.Controls; -using Microsoft.UI.Xaml.Media; -using Syncfusion.UI.Xaml.Core; -using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Controls.Primitives; -using Microsoft.UI; - -namespace Syncfusion.AvatarViewDemos.WinUI.Views -{ - /// - /// An empty page that can be used on its own or navigated to within a Frame. - /// - public sealed partial class GettingStartedView : Page - { - public GettingStartedView() - { - this.InitializeComponent(); - } - - private void InitialTypeComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) - { - switch (initialTypeComboBox.SelectedIndex) - { - case 0: - avatarView.InitialsType = AvatarInitialsType.SingleCharacter; - break; - case 1: - avatarView.InitialsType = AvatarInitialsType.DoubleCharacter; - break; - } - } - - private void NameTextBox_TextChanged(object sender, TextChangedEventArgs e) - { - avatarView.AvatarName = firstNameTextBox.Text + " " + lastNameTextBox.Text; - } - - private void AvatarBackgroundcolor_ColorChanged(ColorPicker sender, ColorChangedEventArgs args) - { - avatarView.Background = new SolidColorBrush(avatarBackgroundcolor.Color); - } - - private void ContentTypeComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) - { - switch (contentTypeComboBox.SelectedIndex) - { - case 0: - avatarView.ContentType = AvatarContentType.Initials; - firstNameTextBlock.Visibility = Visibility.Visible; - firstNameTextBox.Visibility = Visibility.Visible; - lastNameTextBlock.Visibility = Visibility.Visible; - lastNameTextBox.Visibility = Visibility.Visible; - initialTypeTextBlock.Visibility = Visibility.Visible; - initialTypeComboBox.Visibility = Visibility.Visible; - if (colorTextBlock != null && colorPickerViewBox != null) - { - colorTextBlock.Visibility = Visibility.Visible; - colorPickerViewBox.Visibility = Visibility.Visible; - avatarCharactersTextBlock.Visibility = Visibility.Collapsed; - avatarCharactersComboBox.Visibility = Visibility.Collapsed; - } - break; - case 1: - avatarView.ContentType = AvatarContentType.CustomImage; - firstNameTextBlock.Visibility = Visibility.Collapsed; - firstNameTextBox.Visibility = Visibility.Collapsed; - lastNameTextBlock.Visibility = Visibility.Collapsed; - lastNameTextBox.Visibility = Visibility.Collapsed; - initialTypeTextBlock.Visibility = Visibility.Collapsed; - initialTypeComboBox.Visibility = Visibility.Collapsed; - colorTextBlock.Visibility = Visibility.Collapsed; - colorPickerViewBox.Visibility = Visibility.Collapsed; - avatarCharactersTextBlock.Visibility = Visibility.Collapsed; - avatarCharactersComboBox.Visibility = Visibility.Collapsed; - break; - case 2: - avatarView.ContentType = AvatarContentType.AvatarCharacter; - avatarView.AvatarCharacter = AvatarCharacter.Avatar1; - firstNameTextBlock.Visibility = Visibility.Collapsed; - firstNameTextBox.Visibility = Visibility.Collapsed; - lastNameTextBlock.Visibility = Visibility.Collapsed; - lastNameTextBox.Visibility = Visibility.Collapsed; - initialTypeTextBlock.Visibility = Visibility.Collapsed; - initialTypeComboBox.Visibility = Visibility.Collapsed; - colorTextBlock.Visibility = Visibility.Collapsed; - colorPickerViewBox.Visibility = Visibility.Collapsed; - avatarCharactersTextBlock.Visibility = Visibility.Visible; - avatarCharactersComboBox.Visibility = Visibility.Visible; - avatarCharactersComboBox.SelectedIndex = 0; - break; - } - } - - private void AvatarShapeComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) - { - switch (avatarShapeComboBox.SelectedIndex) - { - case 0: - if (avatarSizeComboBox != null && avatarSizeTextBlock != null) - { - avatarSizeComboBox.Visibility = Visibility.Visible; - avatarSizeTextBlock.Visibility = Visibility.Visible; - customSizeSlider.Visibility = Visibility.Collapsed; - badge.HorizontalPosition = 0.83; - badge.VerticalPosition = 0.85; - UpdateAvatarViewSize(); - } - avatarView.AvatarShape = AvatarShape.Circle; - break; - case 1: - avatarView.AvatarShape = AvatarShape.Square; - customSizeSlider.Visibility = Visibility.Collapsed; - avatarSizeComboBox.Visibility = Visibility.Visible; - avatarSizeTextBlock.Visibility = Visibility.Visible; - badge.HorizontalPosition = 0.90; - badge.VerticalPosition = 0.90; - UpdateAvatarViewSize(); - break; - case 2: - avatarView.AvatarShape = AvatarShape.Custom; - avatarSizeComboBox.Visibility = Visibility.Collapsed; - avatarSizeTextBlock.Visibility = Visibility.Collapsed; - customSizeSlider.Visibility = Visibility.Visible; - avatarView.Height = customSizeSlider.Value; - avatarView.Width = customSizeSlider.Value; - badge.HorizontalPosition =0.90; - badge.VerticalPosition = 0.90; - badgeViewBox.Height = customSizeSlider.Value / 3.2; - badgeViewBox.Width = customSizeSlider.Value / 3.2; - break; - } - } - - private void UpdateAvatarViewSize() - { - switch (avatarSizeComboBox.SelectedIndex) - { - case 0: - avatarView.AvatarSize = AvatarSize.ExtraLarge; - badgeViewBox.Height = 31; - badgeViewBox.Width = 31; - break; - case 1: - avatarView.AvatarSize = AvatarSize.Large; - badgeViewBox.Height = 19; - badgeViewBox.Width = 19; - break; - case 2: - avatarView.AvatarSize = AvatarSize.Medium; - badgeViewBox.Height = 16; - badgeViewBox.Width = 16; - break; - case 3: - avatarView.AvatarSize = AvatarSize.Small; - badgeViewBox.Height = 14; - badgeViewBox.Width = 14; - break; - case 4: - avatarView.AvatarSize = AvatarSize.ExtraSmall; - badgeViewBox.Height = 11; - badgeViewBox.Width = 11; - break; - } - } - - private void AvatarSizeComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) - { - UpdateAvatarViewSize(); - } - - private void CustomSizeSlider_Changed(object sender, RangeBaseValueChangedEventArgs e) - { - if (avatarShapeComboBox.SelectedIndex == 2) - { - avatarView.Width = customSizeSlider.Value; - avatarView.Height = customSizeSlider.Value; - badgeViewBox.Height = customSizeSlider.Value / 3.2; - badgeViewBox.Width = customSizeSlider.Value / 3.2; - } - } - - private void AvatarCharactersComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) - { - switch (avatarCharactersComboBox.SelectedIndex) - { - case 0: - avatarView.AvatarCharacter = AvatarCharacter.Avatar1; - break; - case 1: - avatarView.AvatarCharacter = AvatarCharacter.Avatar2; - break; - case 2: - avatarView.AvatarCharacter = AvatarCharacter.Avatar3; - break; - case 3: - avatarView.AvatarCharacter = AvatarCharacter.Avatar4; - break; - case 4: - avatarView.AvatarCharacter = AvatarCharacter.Avatar5; - break; - case 5: - avatarView.AvatarCharacter = AvatarCharacter.Avatar6; - break; - case 6: - avatarView.AvatarCharacter = AvatarCharacter.Avatar7; - break; - case 7: - avatarView.AvatarCharacter = AvatarCharacter.Avatar8; - break; - case 8: - avatarView.AvatarCharacter = AvatarCharacter.Avatar9; - break; - case 9: - avatarView.AvatarCharacter = AvatarCharacter.Avatar10; - break; - } - } - } -} diff --git a/avatarview/Views/GroupView.xaml b/avatarview/Views/GroupView.xaml deleted file mode 100644 index 35e7ac59..00000000 --- a/avatarview/Views/GroupView.xaml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/avatarview/Views/GroupView.xaml.cs b/avatarview/Views/GroupView.xaml.cs deleted file mode 100644 index 5f26356d..00000000 --- a/avatarview/Views/GroupView.xaml.cs +++ /dev/null @@ -1,22 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Microsoft.UI.Xaml.Controls; - -namespace Syncfusion.AvatarViewDemos.WinUI.Views -{ - /// - /// An empty page that can be used on its own or navigated to within a Frame. - /// - public sealed partial class GroupView : Page - { - public GroupView() - { - this.InitializeComponent(); - } - } -} diff --git a/avatarview/app.manifest b/avatarview/app.manifest deleted file mode 100644 index 54eb669c..00000000 --- a/avatarview/app.manifest +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - true/PM - PerMonitorV2, PerMonitor - - - diff --git a/avatarview/syncfusion.avatarview.props b/avatarview/syncfusion.avatarview.props deleted file mode 100644 index 5ecc45f6..00000000 --- a/avatarview/syncfusion.avatarview.props +++ /dev/null @@ -1,78 +0,0 @@ - - - - AvatarView\SamplesConfiguration.cs - - - AvatarView\Views\GettingStartedView.xaml.cs - ..\AvatarView\Views\GettingStartedView.xaml - - - AvatarView\Views\GroupView.xaml.cs - ..\AvatarView\Views\GroupView.xaml - - - AvatarView\Model\Model.cs - - - AvatarView\ViewModel\ViewModel.cs - - - AvatarView\ViewModel\AvatarViewModel.cs - - - - - - AvatarView\Views\GettingStartedView.xaml - Designer - MSBuild:Compile - - - AvatarView\Views\GroupView.xaml - Designer - MSBuild:Compile - - - - - - AvatarView\Assets\AvatarView\Person1.png - Always - - - AvatarView\Assets\AvatarView\Finley.png - Always - - - AvatarView\Assets\AvatarView\Gabriella.png - Always - - - AvatarView\Assets\AvatarView\Jayden.png - Always - - - AvatarView\Assets\AvatarView\Michael.png - Always - - - AvatarView\Assets\AvatarView\Oscar.png - Always - - - AvatarView\Assets\AvatarView\Sarah.png - Always - - - AvatarView\Assets\AvatarView\Victoriya.png - Always - - - AvatarView\Assets\AvatarView\gettingstarted_xaml.txt - - - AvatarView\Assets\AvatarView\groupview_xaml.txt - - - diff --git a/barcode/App.xaml b/barcode/App.xaml deleted file mode 100644 index f6257470..00000000 --- a/barcode/App.xaml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/barcode/App.xaml.cs b/barcode/App.xaml.cs deleted file mode 100644 index 5ca63d23..00000000 --- a/barcode/App.xaml.cs +++ /dev/null @@ -1,106 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices.WindowsRuntime; -using Windows.ApplicationModel; -using Windows.ApplicationModel.Activation; -using Windows.Foundation; -using Windows.Foundation.Collections; -using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Controls; -using Microsoft.UI.Xaml.Controls.Primitives; -using Microsoft.UI.Xaml.Data; -using Microsoft.UI.Xaml.Input; -using Microsoft.UI.Xaml.Media; -using Microsoft.UI.Xaml.Navigation; -using Windows.ApplicationModel.Core; -using Syncfusion.DemosCommon.WinUI; - -// To learn more about WinUI, the WinUI project structure, -// and more about our project templates, see: http://aka.ms/winui-project-info. - -namespace Syncfusion.BarcodeDemos.WinUI -{ - /// - /// Provides application-specific behavior to supplement the default Application class. - /// - sealed partial class App : Application - { - /// - /// Initializes the singleton application object. This is the first line of authored code - /// executed, and as such is the logical equivalent of main() or WinMain(). - /// - public App() - { - this.InitializeComponent(); - } - - /// - /// Invoked when the application is launched normally by the end user. Other entry points - /// will be used such as when the application is launched to open a specific file. - /// - /// Details about the launch request and process. - protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs e) - { - m_window = new MainWindow(); - m_window.Activate(); - Frame rootFrame = m_window.Content as Frame; - - - // Do not repeat app initialization when the Window already has content, - // just ensure that the window is active - if (rootFrame == null) - { - // Create a Frame to act as the navigation context and navigate to the first page - rootFrame = new Frame(); - - // rootFrame.NavigationFailed += OnNavigationFailed; - - if (e != null && e.UWPLaunchActivatedEventArgs.PreviousExecutionState == ApplicationExecutionState.Terminated) - { - //TODO: Load state from previously suspended application - } - - // Place the frame in the current Window - m_window.Content = rootFrame; - } - - // if (args != null && args.UWPLaunchActivatedEventArgs.PrelaunchActivated == false) - { -#pragma warning disable CA1806 // Do not ignore method results - new SamplesConfiguration(); -#pragma warning restore CA1806 // Do not ignore method results - if (rootFrame.Content == null) - { - // When the navigation stack isn't restored navigate to the first page, - // configuring the new page by passing required information as a navigation - // parameter - rootFrame.Navigate(typeof(DemosCommon.WinUI.MainPage), e.Arguments); - } - // Ensure the current window is active - m_window.Activate(); - } - ThemeHelper.CurrentApplicationWindow = m_window; - } - - /// - /// Invoked when Navigation to a certain page fails - /// - /// The Frame which failed navigation - /// Details about the navigation failure - void OnNavigationFailed(object sender, NavigationFailedEventArgs e) - { - throw new Exception("Failed to load Page " + e.SourcePageType.FullName); - } - - private MainWindow m_window; - } -} diff --git a/barcode/Assets/LockScreenLogo.scale-200.png b/barcode/Assets/LockScreenLogo.scale-200.png deleted file mode 100644 index 0bcb25b2..00000000 Binary files a/barcode/Assets/LockScreenLogo.scale-200.png and /dev/null differ diff --git a/barcode/Assets/SplashScreen.scale-200.png b/barcode/Assets/SplashScreen.scale-200.png deleted file mode 100644 index 50c04eeb..00000000 Binary files a/barcode/Assets/SplashScreen.scale-200.png and /dev/null differ diff --git a/barcode/Assets/Square150x150Logo.scale-200.png b/barcode/Assets/Square150x150Logo.scale-200.png deleted file mode 100644 index a496976c..00000000 Binary files a/barcode/Assets/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/barcode/Assets/Square44x44Logo.scale-200.png b/barcode/Assets/Square44x44Logo.scale-200.png deleted file mode 100644 index e427f719..00000000 Binary files a/barcode/Assets/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/barcode/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/barcode/Assets/Square44x44Logo.targetsize-24_altform-unplated.png deleted file mode 100644 index f6c02ce9..00000000 Binary files a/barcode/Assets/Square44x44Logo.targetsize-24_altform-unplated.png and /dev/null differ diff --git a/barcode/Assets/StoreLogo.png b/barcode/Assets/StoreLogo.png deleted file mode 100644 index 9e4b0328..00000000 Binary files a/barcode/Assets/StoreLogo.png and /dev/null differ diff --git a/barcode/Assets/Wide310x150Logo.scale-200.png b/barcode/Assets/Wide310x150Logo.scale-200.png deleted file mode 100644 index 1d502c99..00000000 Binary files a/barcode/Assets/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/barcode/MainWindow.xaml b/barcode/MainWindow.xaml deleted file mode 100644 index e8273f7e..00000000 --- a/barcode/MainWindow.xaml +++ /dev/null @@ -1,11 +0,0 @@ - - - - diff --git a/barcode/MainWindow.xaml.cs b/barcode/MainWindow.xaml.cs deleted file mode 100644 index a6f7ea7a..00000000 --- a/barcode/MainWindow.xaml.cs +++ /dev/null @@ -1,39 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Controls; -using Microsoft.UI.Xaml.Controls.Primitives; -using Microsoft.UI.Xaml.Data; -using Microsoft.UI.Xaml.Input; -using Microsoft.UI.Xaml.Media; -using Microsoft.UI.Xaml.Navigation; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices.WindowsRuntime; -using Windows.Foundation; -using Windows.Foundation.Collections; - -// To learn more about WinUI, the WinUI project structure, -// and more about our project templates, see: http://aka.ms/winui-project-info. - -namespace Syncfusion.BarcodeDemos.WinUI -{ - /// - /// An empty window that can be used on its own or navigated to within a Frame. - /// - public sealed partial class MainWindow : Window - { - public MainWindow() - { - this.InitializeComponent(); - this.Title = "Syncfusion Barcode Controls Gallery for WinUI Desktop"; - } - } -} diff --git a/barcode/Model/BarcodeModel.cs b/barcode/Model/BarcodeModel.cs deleted file mode 100644 index 574100c6..00000000 --- a/barcode/Model/BarcodeModel.cs +++ /dev/null @@ -1,24 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Syncfusion.BarcodeDemos.WinUI -{ - public class BarcodeModel - { -#region Properties - public string SymobologyItem { get; set; } - - public string DataMatrixEncoding { get; set; } -#endregion - } -} diff --git a/barcode/Package.appxmanifest b/barcode/Package.appxmanifest deleted file mode 100644 index 1d0dec55..00000000 --- a/barcode/Package.appxmanifest +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - Syncfusion WinUI Barcode Control Gallery - Syncfusion - Assets\StoreLogo.png - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/barcode/Properties/AssemblyInfo.cs b/barcode/Properties/AssemblyInfo.cs deleted file mode 100644 index 5a66d6bd..00000000 --- a/barcode/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Syncfusion.BarcodeDemos.WinUI")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Syncfusion Inc.")] -[assembly: AssemblyProduct("Syncfusion.BarcodeDemos.WinUI")] -[assembly: AssemblyCopyright("Copyright © 2001-2024 Syncfusion Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("25.2.3")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: ComVisible(false)] \ No newline at end of file diff --git a/barcode/Properties/Default.rd.xml b/barcode/Properties/Default.rd.xml deleted file mode 100644 index af00722c..00000000 --- a/barcode/Properties/Default.rd.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/barcode/Properties/PublishProfiles/win10-arm64.pubxml b/barcode/Properties/PublishProfiles/win10-arm64.pubxml deleted file mode 100644 index a132e44c..00000000 --- a/barcode/Properties/PublishProfiles/win10-arm64.pubxml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - FileSystem - arm64 - win10-arm64 - bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ - true - False - False - True - - - \ No newline at end of file diff --git a/barcode/Properties/PublishProfiles/win10-x64.pubxml b/barcode/Properties/PublishProfiles/win10-x64.pubxml deleted file mode 100644 index 26ea7e55..00000000 --- a/barcode/Properties/PublishProfiles/win10-x64.pubxml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - FileSystem - x64 - win10-x64 - bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ - true - False - False - True - - - \ No newline at end of file diff --git a/barcode/Properties/PublishProfiles/win10-x86.pubxml b/barcode/Properties/PublishProfiles/win10-x86.pubxml deleted file mode 100644 index 34d14d4d..00000000 --- a/barcode/Properties/PublishProfiles/win10-x86.pubxml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - FileSystem - x86 - win10-x86 - bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ - true - False - False - True - - - \ No newline at end of file diff --git a/barcode/Properties/launchSettings.json b/barcode/Properties/launchSettings.json deleted file mode 100644 index ddbc3336..00000000 --- a/barcode/Properties/launchSettings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "profiles": { - "Syncfusion.BarcodeDemos.WinUI": { - "commandName": "MsixPackage" - } - } -} \ No newline at end of file diff --git a/barcode/SamplesConfiguration.cs b/barcode/SamplesConfiguration.cs deleted file mode 100644 index 93d93509..00000000 --- a/barcode/SamplesConfiguration.cs +++ /dev/null @@ -1,60 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Syncfusion.DemosCommon.WinUI; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Syncfusion.BarcodeDemos.WinUI -{ - public class SamplesConfiguration - { - public SamplesConfiguration() - { - // Showcase & Updated - - // Showcase & New - - //What's New - - DemoInfo showCaseSample1 = new DemoInfo() - { - Name = "Getting Started", - Category = "Getting Started", - Description = "This sample showcases how to display data in the encoded machine-readable format using supported symbol types either in a one-dimensional or two-dimensional pattern.", - DemoType = DemoTypes.None, - DemoView = typeof(Views.BarcodeDemoPage) - }; - showCaseSample1.Documentation.AddRange(new List() - { new Documentation() { Content = "Barcode - API", Uri = new Uri("https://help.syncfusion.com"), } }); - - // Updated - - var demos = new List() - { - showCaseSample1 - }; - - var controlInfo = new ControlInfo() - { - Control = DemoControl.Barcode, - Description = "The Barcode is a data visualization control to generate and display data in a machine-readable format using supported symbol types.", - Glyph = "\uE709", - ImageSource= "Barcode.png", - ControlBadge = ControlBadge.None, - ControlCategory = ControlCategory.DataVisualization - }; - - controlInfo.Demos.AddRange(demos); - DemoHelper.ControlInfos.Add(controlInfo); - } - - } -} diff --git a/barcode/Syncfusion.BarcodeDemos.WinUI_Net60.csproj b/barcode/Syncfusion.BarcodeDemos.WinUI_Net60.csproj deleted file mode 100644 index 71f0531b..00000000 --- a/barcode/Syncfusion.BarcodeDemos.WinUI_Net60.csproj +++ /dev/null @@ -1,98 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net6.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.BarcodeDemos.WinUI - Syncfusion.BarcodeDemos.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64 - true - Properties\PublishProfiles\win10-$(Platform).pubxml - DEBUG;TRACE;NETFX_CORE; - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - App.xaml - - - MainWindow.xaml - - - - - - - BarcodeDemoPage.xaml - - - - - - Designer - MSBuild:Compile - - - - - - - - - - - - diff --git a/barcode/Syncfusion.BarcodeDemos.WinUI_Net60.sln b/barcode/Syncfusion.BarcodeDemos.WinUI_Net60.sln deleted file mode 100644 index 22989c50..00000000 --- a/barcode/Syncfusion.BarcodeDemos.WinUI_Net60.sln +++ /dev/null @@ -1,41 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.0.32126.317 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.BarcodeDemos.WinUI_Net60", "Syncfusion.BarcodeDemos.WinUI_Net60.csproj", "{86A26EA9-2975-41D6-B675-72DF4D96877A}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.DemosCommon.WinUI_lib_Net60", "..\common\Syncfusion.DemosCommon.WinUI_lib_Net60.csproj", "{47411333-4885-4A74-855C-26FF5F33DFF8}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x64.ActiveCfg = Debug|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x64.Build.0 = Debug|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x86.ActiveCfg = Debug|x86 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x86.Build.0 = Debug|x86 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x64.ActiveCfg = Release|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x64.Build.0 = Release|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x86.ActiveCfg = Release|x86 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x86.Build.0 = Release|x86 - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {22A9DA21-AC5B-44E5-89B7-A3CD0E48ECAE} - EndGlobalSection -EndGlobal diff --git a/barcode/Syncfusion.BarcodeDemos.WinUI_Net70.csproj b/barcode/Syncfusion.BarcodeDemos.WinUI_Net70.csproj deleted file mode 100644 index 5514c4a9..00000000 --- a/barcode/Syncfusion.BarcodeDemos.WinUI_Net70.csproj +++ /dev/null @@ -1,98 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net7.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.BarcodeDemos.WinUI - Syncfusion.BarcodeDemos.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64 - true - Properties\PublishProfiles\win10-$(Platform).pubxml - DEBUG;TRACE;NETFX_CORE; - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - App.xaml - - - MainWindow.xaml - - - - - - - BarcodeDemoPage.xaml - - - - - - Designer - MSBuild:Compile - - - - - - - - - - - - diff --git a/barcode/Syncfusion.BarcodeDemos.WinUI_Net70.sln b/barcode/Syncfusion.BarcodeDemos.WinUI_Net70.sln deleted file mode 100644 index ce6afece..00000000 --- a/barcode/Syncfusion.BarcodeDemos.WinUI_Net70.sln +++ /dev/null @@ -1,41 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.0.32126.317 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.BarcodeDemos.WinUI_Net70", "Syncfusion.BarcodeDemos.WinUI_Net70.csproj", "{86A26EA9-2975-41D6-B675-72DF4D96877A}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.DemosCommon.WinUI_lib_Net70", "..\common\Syncfusion.DemosCommon.WinUI_lib_Net70.csproj", "{47411333-4885-4A74-855C-26FF5F33DFF8}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x64.ActiveCfg = Debug|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x64.Build.0 = Debug|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x86.ActiveCfg = Debug|x86 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x86.Build.0 = Debug|x86 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x64.ActiveCfg = Release|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x64.Build.0 = Release|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x86.ActiveCfg = Release|x86 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x86.Build.0 = Release|x86 - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {22A9DA21-AC5B-44E5-89B7-A3CD0E48ECAE} - EndGlobalSection -EndGlobal diff --git a/barcode/Syncfusion.BarcodeDemos.WinUI_Net80.csproj b/barcode/Syncfusion.BarcodeDemos.WinUI_Net80.csproj deleted file mode 100644 index a5c45ac7..00000000 --- a/barcode/Syncfusion.BarcodeDemos.WinUI_Net80.csproj +++ /dev/null @@ -1,99 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net8.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.BarcodeDemos.WinUI - Syncfusion.BarcodeDemos.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64 - true - Properties\PublishProfiles\win10-$(Platform).pubxml - DEBUG;TRACE;NETFX_CORE; - true - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - App.xaml - - - MainWindow.xaml - - - - - - - BarcodeDemoPage.xaml - - - - - - Designer - MSBuild:Compile - - - - - - - - - - - - diff --git a/barcode/Syncfusion.BarcodeDemos.WinUI_Net80.sln b/barcode/Syncfusion.BarcodeDemos.WinUI_Net80.sln deleted file mode 100644 index 6844a064..00000000 --- a/barcode/Syncfusion.BarcodeDemos.WinUI_Net80.sln +++ /dev/null @@ -1,41 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.8.226.21692 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.BarcodeDemos.WinUI_Net80", "Syncfusion.BarcodeDemos.WinUI_Net80.csproj", "{86A26EA9-2975-41D6-B675-72DF4D96877A}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.DemosCommon.WinUI_lib_Net80", "..\common\Syncfusion.DemosCommon.WinUI_lib_Net80.csproj", "{47411333-4885-4A74-855C-26FF5F33DFF8}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x64.ActiveCfg = Debug|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x64.Build.0 = Debug|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x86.ActiveCfg = Debug|x86 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Debug|x86.Build.0 = Debug|x86 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x64.ActiveCfg = Release|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x64.Build.0 = Release|x64 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x86.ActiveCfg = Release|x86 - {86A26EA9-2975-41D6-B675-72DF4D96877A}.Release|x86.Build.0 = Release|x86 - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x64.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.ActiveCfg = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Debug|x86.Build.0 = Debug|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x64.Build.0 = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.ActiveCfg = Release|Any CPU - {47411333-4885-4A74-855C-26FF5F33DFF8}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {22A9DA21-AC5B-44E5-89B7-A3CD0E48ECAE} - EndGlobalSection -EndGlobal diff --git a/barcode/ViewModel/BarcodeViewModel.cs b/barcode/ViewModel/BarcodeViewModel.cs deleted file mode 100644 index 1371f2e0..00000000 --- a/barcode/ViewModel/BarcodeViewModel.cs +++ /dev/null @@ -1,369 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Data; -using Syncfusion.UI.Xaml.Barcode; -using System; -using System.Collections.Generic; -using System.Collections.ObjectModel; -using System.Linq; -using System.ComponentModel; -using System.Text; -using System.Text.RegularExpressions; -using System.Threading.Tasks; - -namespace Syncfusion.BarcodeDemos.WinUI -{ - public class BarcodeViewModel : INotifyPropertyChanged - { -#region Fields - - private string code11BarcodeText = "1010111011"; - - private string validateCode11BarcodeText = ""; - - private string validateDataMatricBarcodeText = ""; - - private string dataMatrixSupportedChar = "[^A-Za-z0-9]"; - - private string dataMatrixBarcodeText = "Syncfusion"; - - private string qrBarcodeText = "Syncfusion"; - - private BarcodeModel selectedItem = new BarcodeModel(); - - private BarcodeBase symbologyItem = new CodabarBarcode(); - - private BarcodeModel encodingSelectedValue = new BarcodeModel(); - - private Visibility code11BarcodeVisibility = Visibility.Visible; - - private Visibility dataMatrixBarcodeVisibility = Visibility.Visible; - - public event PropertyChangedEventHandler PropertyChanged; -#endregion - -#region Constructor - public BarcodeViewModel() - { - Symbology = new ObservableCollection(); - EncodingValues = new ObservableCollection(); - Symbology.Add(new BarcodeModel() { SymobologyItem = "CodaBar" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "Code11" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "Code32" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "Code39" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "Code39Extended" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "Code93" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "Code93Extended" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "Code128A" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "Code128B" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "Code128C" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "UpcBarcode" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "GS1Code128Barcode" }); - Symbology.Add(new BarcodeModel() { SymobologyItem = "Pdf417Barcode" }); - EncodingValues.Add(new BarcodeModel() { DataMatrixEncoding = "Auto" }); - EncodingValues.Add(new BarcodeModel() { DataMatrixEncoding = "ASCII" }); - EncodingValues.Add(new BarcodeModel() { DataMatrixEncoding = "ASCIINumeric" }); - EncodingValues.Add(new BarcodeModel() { DataMatrixEncoding = "Base256" }); - } -#endregion - -#region Properties - - public ObservableCollection Symbology { get; } - - public ObservableCollection EncodingValues { get; } - - public BarcodeModel SelectedItem - { - get - { - return selectedItem; - } - set - { - selectedItem = value; - UpdateSymbology(selectedItem); - OnPropertyChanged("SelectedItem"); - } - } - - - public BarcodeModel EncodingSelectedValue - { - get - { - return encodingSelectedValue; - } - set - { - encodingSelectedValue = value; - SelectedEncodingValue(encodingSelectedValue); - } - } - - public BarcodeBase SymbologyItem - { - get - { - return symbologyItem; - } - set - { - symbologyItem = value; - OnPropertyChanged("SymbologyItem"); - } - } - - public string Code11BarcodeText - { - get - { - return code11BarcodeText; - } - set - { - code11BarcodeText = value; - ValidateCode11Barcode(code11BarcodeText); - OnPropertyChanged("Code11BarcodeText"); - } - } - - public string DataMatrixBarcodeText - { - get - { - return dataMatrixBarcodeText; - } - set - { - dataMatrixBarcodeText = value; - if (EncodingSelectedValue.DataMatrixEncoding == "ASCIINumeric") - ValidateDataMatrixText(dataMatrixBarcodeText); - OnPropertyChanged("DataMatrixBarcodeText"); - } - } - - public string QRBarcodeText - { - get - { - return qrBarcodeText; - } - set - { - qrBarcodeText = value; - OnPropertyChanged("QRBarcodeText"); - } - } - - public string ValidateCode11BarcodeText - { - get - { - return validateCode11BarcodeText; - } - set - { - validateCode11BarcodeText = value; - OnPropertyChanged("ValidateCode11BarcodeText"); - } - } - - - public string ValidateDataMatrixBarcodeText - { - get - { - return validateDataMatricBarcodeText; - } - set - { - validateDataMatricBarcodeText = value; - OnPropertyChanged("ValidateDataMatrixBarcodeText"); - } - } - - public string DataMatrixSupportedChar - { - get - { - return dataMatrixSupportedChar; - } - set - { - dataMatrixSupportedChar = value; - OnPropertyChanged("DataMatrixSupportedChar"); - } - } - - public Visibility Code11BarcodeVisibility - { - get - { - return code11BarcodeVisibility; - } - set - { - code11BarcodeVisibility = value; - OnPropertyChanged("Code11BarcodeVisibility"); - } - } - - public Visibility DataMatrixBarcodeVisibility - { - get - { - return dataMatrixBarcodeVisibility; - } - set - { - dataMatrixBarcodeVisibility = value; - OnPropertyChanged("DataMatrixBarcodeVisibility"); - } - } -#endregion - -#region Methods - private void UpdateSymbology(BarcodeModel barcodeModel) - { - switch(barcodeModel.SymobologyItem) - { - case "CodaBar": - CodabarBarcode codabarBarcode = new CodabarBarcode(); - SymbologyItem = codabarBarcode; - break; - case "Code11": - Code11Barcode code11Barcode = new Code11Barcode(); - SymbologyItem = code11Barcode; - break; - case "Code32": - Code32Barcode code32Barcode = new Code32Barcode(); - SymbologyItem = code32Barcode; - break; - case "Code39": - Code39Barcode code39Barcode = new Code39Barcode(); - SymbologyItem = code39Barcode; - break; - case "Code39Extended": - Code39ExtendedBarcode code39ExtendedBarcode = new Code39ExtendedBarcode(); - SymbologyItem = code39ExtendedBarcode; - break; - case "Code93": - Code93Barcode code93Barcode = new Code93Barcode(); - SymbologyItem = code93Barcode; - break; - case "Code93Extended": - Code93ExtendedBarcode code93ExtendedBarcode = new Code93ExtendedBarcode(); - SymbologyItem = code93ExtendedBarcode; - break; - case "Code128A": - Code128ABarcode code128Barcode = new Code128ABarcode(); - SymbologyItem = code128Barcode; - break; - case "Code128B": - Code128BBarcode code128BBarcode = new Code128BBarcode(); - SymbologyItem = code128BBarcode; - break; - case "Code128C": - Code128CBarcode code128CBarcode = new Code128CBarcode(); - SymbologyItem = code128CBarcode; - break; - case "UpcBarcode": - UpcBarcode upcBarcode = new UpcBarcode(); - SymbologyItem = upcBarcode; - break; - case "GS1Code128Barcode": - GS1Code128Barcode gS1Code128Barcode = new GS1Code128Barcode(); - SymbologyItem = gS1Code128Barcode; - break; - case "Pdf417Barcode": - Pdf417Barcode pdf417Barcode = new Pdf417Barcode(); - SymbologyItem = pdf417Barcode; - break; - } - } - - private void ValidateCode11Barcode(string value) - { - bool isNumeric = false; - char[] validate = value.ToCharArray(); - for (int i = 0; i < validate.Length; i++) - { - if (Char.IsDigit(validate[i])) - { - isNumeric = true; - } - else - { - isNumeric = false; - } - } - if (isNumeric) - { - ValidateCode11BarcodeText = ""; - Code11BarcodeVisibility = Visibility.Visible; - } - else - { - ValidateCode11BarcodeText = "Invalid Input"; - Code11BarcodeVisibility = Visibility.Collapsed; - } - } - - private void ValidateDataMatrixText(string value) - { - bool isNumeric = false; - char[] validate = value.ToCharArray(); - for (int i = 0; i < validate.Length; i++) - { - if (Char.IsDigit(validate[i])) - { - isNumeric = true; - } - else - { - isNumeric = false; - } - } - if (isNumeric) - { - ValidateDataMatrixBarcodeText = ""; - DataMatrixBarcodeVisibility = Visibility.Visible; - } - else - { - ValidateDataMatrixBarcodeText = "Invalid Input"; - DataMatrixBarcodeVisibility = Visibility.Collapsed; - } - } - - private void SelectedEncodingValue(BarcodeModel value) - { - bool isNumeric = int.TryParse(DataMatrixBarcodeText, out int data); - - if (value.DataMatrixEncoding == "ASCIINumeric") - { - DataMatrixSupportedChar = "[0-9]"; - DataMatrixBarcodeText = "583748"; - } - else - { - DataMatrixSupportedChar = "[^A-Za-z0-9]"; - DataMatrixBarcodeText = "Syncfusion"; - } - } - - private void OnPropertyChanged(string Parameter) - { - if (PropertyChanged != null) - PropertyChanged(this, new PropertyChangedEventArgs(Parameter)); - } -#endregion - } -} diff --git a/barcode/Views/BarcodeDemoPage.xaml b/barcode/Views/BarcodeDemoPage.xaml deleted file mode 100644 index 3094f742..00000000 --- a/barcode/Views/BarcodeDemoPage.xaml +++ /dev/null @@ -1,408 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -<syncfusion:SfBarcode - TextSpacing="$(TextSpacing)" ShowValue="$(ShowValue)" Value="$(Value)" - VerticalAlignment="Center" HorizontalAlignment="Center" - HorizontalTextAlignment="$(HorizontalTextAlignment)" VerticalTextAlignment="$(VerticalTextAlignment)" - Width="190" Height="200" RotationAngle="$(RotationAngle)"> - <syncfusion:SfBarcode.Symbology> - <syncfusion:Code11Barcode/> - </syncfusion:SfBarcode.Symbology> -</syncfusion:SfBarcode> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -<syncfusion:SfBarcode - VerticalAlignment="Center" HorizontalAlignment="Center" - Value="48625310" TextSpacing="$(UniDimensionTextSpacing)" Module="$(Module)" - Symbology="{Binding Symbology}" RotationAngle="$(UniDimensionRotationAngle)" - Width="340" Height="200" - EncodeStartStopSymbols="$(EncodeStartStopSymbols)" EnableCheckSum="$(EnableCheckSum)"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -<syncfusion:SfBarcode - VerticalAlignment="Center" HorizontalAlignment="Center" - Value="$(DataMatrixValue)" Width="250" Height="200" - AutoModule="$(DataMatrixAutoModule)" Module="$(DataMatrixModule)" RotationAngle="$(DataMatrixRotationAngle)"> - <syncfusion:SfBarcode.Symbology> - <syncfusion:DataMatrixBarcode Encoding="{Binding Encoding}" - MatrixSize="$(MatrixSize)"/> - </syncfusion:SfBarcode.Symbology> -</syncfusion:SfBarcode> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -<syncfusion:SfBarcode - VerticalAlignment="Center" HorizontalAlignment="Center" - Value="$(QRBarcodeValue)" Width="250" Height="200" - AutoModule="$(QRBarcodeAutoModule)" Module="$(QRBarcodeModule)" RoatationAngle="$(QRBarcodeRoatationAngle)"> - <syncfusion:SfBarcode.Symbology> - <syncfusion:QRBarcode ErrorCorrectionLevel="$(ErrorCorrectionLevel)" - QRVersion="$(QRVersion)"/> - </syncfusion:SfBarcode.Symbology> -</SfBarcode> - - - - - - - - - - - - - - diff --git a/barcode/Views/BarcodeDemoPage.xaml.cs b/barcode/Views/BarcodeDemoPage.xaml.cs deleted file mode 100644 index 6c86e891..00000000 --- a/barcode/Views/BarcodeDemoPage.xaml.cs +++ /dev/null @@ -1,50 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices.WindowsRuntime; -using Microsoft.UI.Xaml.Controls; -using Syncfusion.UI.Xaml.Barcode; - -// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238 - -namespace Syncfusion.BarcodeDemos.WinUI.Views -{ - /// - /// An empty page that can be used on its own or navigated to within a Frame. - /// - public sealed partial class BarcodeDemoPage : Page, IDisposable - { - public BarcodeDemoPage() - { - this.InitializeComponent(); - } - - public void Dispose() - { - if (barcode != null) - { - barcode = null; - } - if (uniDimesionalBarcode != null) - { - uniDimesionalBarcode = null; - } - if (dataMatrixBarcode != null) - { - dataMatrixBarcode = null; - } - if (qrBarcode != null) - { - qrBarcode = null; - } - } - } -} diff --git a/barcode/app.manifest b/barcode/app.manifest deleted file mode 100644 index b47a3b48..00000000 --- a/barcode/app.manifest +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - true/PM - PerMonitorV2, PerMonitor - - - diff --git a/barcode/syncfusion.barcode.props b/barcode/syncfusion.barcode.props deleted file mode 100644 index 8d0a1aea..00000000 --- a/barcode/syncfusion.barcode.props +++ /dev/null @@ -1,29 +0,0 @@ - - - - Barcode\Model\BarcodeModel.cs - - - Barcode\SamplesConfiguration.cs - - - Barcode\ViewModel\BarcodeViewModel.cs - - - Barcode\Views\BarcodeDemoPage.xaml.cs - ..\Barcode\Views\BarcodeDemoPage.xaml - - - - - - Barcode\Views\BarcodeDemoPage.xaml - Designer - MSBuild:Compile - - - - - - - diff --git a/barcode/syncfusion.barcodedemos.winui_TemporaryKey.pfx b/barcode/syncfusion.barcodedemos.winui_TemporaryKey.pfx deleted file mode 100644 index d9772099..00000000 Binary files a/barcode/syncfusion.barcodedemos.winui_TemporaryKey.pfx and /dev/null differ diff --git a/build/build.cake b/build/build.cake deleted file mode 100644 index db8a541c..00000000 --- a/build/build.cake +++ /dev/null @@ -1,210 +0,0 @@ -#tool nuget:?package=NUnit.ConsoleRunner&version=3.4.0 -#addin nuget:?package=Cake.FileHelpers&version=3.3.0 -#tool "nuget:?package=GitVersion.CommandLine&version=5.3.7" -#tool "nuget:?package=JetBrains.dotCover.CommandLineTools&version=2020.1.4" -#tool "nuget:?package=ReportUnit" -#tool "docfx.console" -#addin nuget:?package=Cake.Docfx&version=0.13.1 -#addin nuget:?package=Cake.Xamarin&version=3.1.0 -#addin nuget:?package=Cake.WebDeploy&version=0.3.4 -#addin "nuget:?package=Syncfusion.Build.CakePlugin" -#addin "nuget:?package=Syncfusion.UnitTest.CakePlugin" -#addin "nuget:?package=Syncfusion.APIReference.CakePlugin" - -using System.IO; -using System.Collections.Generic; - -////////////////////////////////////////////////////////////////////// -// ARGUMENTS -////////////////////////////////////////////////////////////////////// - -var target = Argument("target", "Build"); -var apiServerIP=Argument("apiServerIP",""); -var apiServerPort=Argument("apiServerPort",""); -var apiSiteName=Argument("apiSiteName",""); -var apiServerUserName=Argument("apiServerUserName",""); -var apiServerPassword=Argument("apiServerPassword",""); -var SourceBranch=Argument("SourceBranch",""); -var XAMLAWSAccessID=Argument("XAMLAWSAccessID",""); -var XAMLAWSAccessKey=Argument("XAMLAWSAccessKey",""); -var currentDirectory = MakeAbsolute(Directory("../")); -var hasNUnitTestCases = false; - -////////////////////////////////////////////////////////////////////// -// TASKS -////////////////////////////////////////////////////////////////////// - -Task("Build").Does(() => -{ - Syncfusion.Build.CakePlugin.BuildAlias.CompileProjects(Context); - - // Copies the cireports to repository location to avoid file not found error. - EnsureDirectoryExists("../cireports"); - Context.CopyDirectory("../cireports", "../../cireports"); - -}) -.OnError(exception => -{ - // Copies the cireports to repository location to avoid file not found error. - EnsureDirectoryExists("../cireports"); - Context.CopyDirectory("../cireports", "../../cireports"); - FileWriteText("../cakelog.txt", "Error on Executing Build:" + exception.ToString()); - throw new Exception("Cake process Failed on Build Task"); -}); - -Task("APIReference") -.Does(() => -{ - if(IsRunningOnWindows()) - { - Syncfusion.APIReference.CakePlugin.ApiReferenceAlias.Generate(Context); - } -}) -.OnError(exception => -{ - FileWriteText("../cakelog.txt", "Error on Executing APIReference task:" + exception.ToString()); - throw new Exception("Cake process Failed on APIReference Task"); -}); - -Task("CodeViolation").Does(() => -{ - if(IsRunningOnWindows()) - { - //Syncfusion.Build.CakePlugin.BuildAlias.GetStyleCopReports(Context); - //Syncfusion.Build.CakePlugin.BuildAlias.GetFxCopReports(Context); - } -}) -.OnError(exception => -{ - FileWriteText("../cakelog.txt", "Error on Executing CodeViolation task:" + exception.ToString()); - throw new Exception("Cake process Failed on CodeViolation Task"); -}); - -////////////////////////////////////////////////////////////////////// -// Test -////////////////////////////////////////////////////////////////////// - -Task("Test").Does(() => -{ - if(IsRunningOnWindows() && hasNUnitTestCases) - { - Syncfusion.Build.CakePlugin.BuildAlias.Test(Context); - DotCover(); - } - -}) -.OnError(exception => -{ - FileWriteText("../cakelog.txt", "Error on Test task:" + exception.ToString()); - throw new Exception("Cake process Failed on Test Task"); -}); - - -//Apply the DotCover tool to test suite -void DotCover() -{ - var currentDirectoryInfo=new DirectoryInfo(currentDirectory.FullPath); - var sourcedirectories = currentDirectoryInfo.GetDirectories("WinForms",SearchOption.AllDirectories); - var codecoverageFolder = Argument("codecoverageFolder", currentDirectory.FullPath + "/cireports/codecoverage"); - var nunitFolder = Argument("nunitFolder", currentDirectory.FullPath + "/cireports/nunit"); - foreach(var sourcedir in sourcedirectories) - { - var winformsDirectories = sourcedir.GetDirectories("Test",SearchOption.AllDirectories); - foreach(var testSuitDirectory in winformsDirectories) - { - var testDirectories = sourcedir.GetDirectories("bin",SearchOption.AllDirectories); - foreach(var testProjectDirectory in testDirectories) - { - var files = testProjectDirectory.GetFiles("*.Test.dll",SearchOption.AllDirectories); - - //Apply the test suite dll to nunit with dotCover tool and its generate a output of coverage as dcvr format. - foreach(var file in files) - { - int index = file.Name.IndexOf(file.Extension); - var fileName = file.Name.Substring(0, index); - try - { - DotCoverCover(tool => { - tool.NUnit3(file.FullName,new NUnit3Settings { - NoResults = false, - Results = new[] { new NUnit3Result { FileName = nunitFolder+"/" +fileName+".TestResult.xml" } } - });}, - new FilePath(codecoverageFolder+"/" +fileName+".UnitTestCover.dcvr"), - new DotCoverCoverSettings() - .WithScope(file.FullName) - .WithFilter("-:*Test")); -} -catch -{ -} - } - } - } - } - var coveragePercent = ""; - var dcvrFiles = currentDirectoryInfo.GetFiles("*.UnitTestCover.dcvr", SearchOption.AllDirectories); - var filesCollection = new FilePathCollection(new PathComparer(true)); - foreach (var filePath in dcvrFiles) - { - filesCollection.Add(new FilePath(filePath.FullName)); - } - - DotCoverMerge(filesCollection, new FilePath(codecoverageFolder + "/UnitTestCover.dcvr")); - - DotCoverReport(codecoverageFolder + "/UnitTestCover.dcvr", codecoverageFolder + "/UnitTestCover.html", new DotCoverReportSettings - { - ReportType = DotCoverReportType.HTML - }); - - DotCoverReport(codecoverageFolder + "/UnitTestCover.dcvr", codecoverageFolder + "/UnitTestCover.xml", new DotCoverReportSettings { ReportType = DotCoverReportType.XML }); - - //Get the coverage percentage from generated report - var percentage = (from elements in System.Xml.Linq.XDocument.Load(codecoverageFolder + "/UnitTestCover.xml").Descendants("Root") - select (string)elements.Attribute("CoveragePercent")).FirstOrDefault(); - coveragePercent += ":" + percentage + " "; - - var testFiles = currentDirectoryInfo.GetFiles("*.TestResult.xml", SearchOption.AllDirectories); - foreach (var file in testFiles) - { - ReportUnit(file.FullName); - } - - foreach (var filePath in dcvrFiles) - { - DeleteFile(filePath.FullName); - } - - //Store a coverage percentage as text file. - FileStream fs1 = new FileStream("../cireports/codecoverage/UnitTestCover.txt", FileMode.OpenOrCreate, FileAccess.ReadWrite); - StreamWriter writer = new StreamWriter(fs1); - writer.Write(coveragePercent); - writer.Close(); - //Display the coverage percentage - Information("CoveragePercent : " + coveragePercent); -} - -////////////////////////////////////////////////////////////////////// -// Publish -////////////////////////////////////////////////////////////////////// - -Task("publish") -.Does(() => -{ - if(IsRunningOnWindows()) - { - //Resolved appcenter publish issues in winui sb, so commented the below changes and stopped the app publishing in AWS. - var information = "SourceBranch:" + SourceBranch + ",\nXAMLAWSAccessID:" + XAMLAWSAccessID + ",\nXAMLAWSAccessKey:"+ XAMLAWSAccessKey; - StreamWriter infoFile = new StreamWriter(currentDirectory+"/cireports/information.txt"); - infoFile.WriteLine(information); - infoFile.Close(); - //Syncfusion.Build.CakePlugin.BuildAlias.AppxPackagePublishInAWS(Context); - Syncfusion.Build.CakePlugin.BuildAlias.AppCenterPublish(Context); - } -}) -.OnError(exception => -{ - FileWriteText("../cakelog.txt", "Error on publish task:" + exception.ToString()); - throw new Exception("Cake process Failed on publish Task"); -}); - -RunTarget(target); \ No newline at end of file diff --git a/build/build.ps1 b/build/build.ps1 deleted file mode 100644 index 5e656103..00000000 --- a/build/build.ps1 +++ /dev/null @@ -1,228 +0,0 @@ -########################################################################## -# This is the Cake bootstrapper script for PowerShell. -# This file was downloaded from https://github.com/cake-build/resources -# Feel free to change this file to fit your needs. -########################################################################## - -<# - -.SYNOPSIS -This is a Powershell script to bootstrap a Cake build. - -.DESCRIPTION -This Powershell script will download NuGet if missing, restore NuGet tools (including Cake) -and execute your Cake build script with the parameters you provide. - -.PARAMETER Script -The build script to execute. -.PARAMETER Target -The build script target to run. -.PARAMETER Configuration -The build configuration to use. -.PARAMETER Verbosity -Specifies the amount of information to be displayed. -.PARAMETER Experimental -Tells Cake to use the latest Roslyn release. -.PARAMETER WhatIf -Performs a dry run of the build script. -No tasks will be executed. -.PARAMETER Mono -Tells Cake to use the Mono scripting engine. -.PARAMETER SkipToolPackageRestore -Skips restoring of packages. -.PARAMETER ScriptArgs -Remaining arguments are added here. - -.LINK -http://cakebuild.net - -#> - -[CmdletBinding()] -Param( - [string]$Script = "build.cake", - [string]$Target = "Build", - [string]$ReferencePath = "", - [string]$OutputPath = "", - [string]$Platform = "", - [string]$Project = "", - [string]$StudioVersion = "14.4.0.55", - [string]$AssemblyFileVersion = "", - [string]$nugetserverurl="", - [string]$nugetapikey="", - [string]$SourceBranch="", - [string]$XAMLAWSAccessID="", - [string]$XAMLAWSAccessKey="", - [string]$revisionNumber="", - [string]$apiServerIP="", - [string]$apiServerPort="", - [string]$apiServerUserName="", - [string]$apiServerPassword="", - [string]$apiSiteName="", - [ValidateSet("Release", "Debug")] - [string]$Configuration = "Release-Xml", - [ValidateSet("Quiet", "Minimal", "Normal", "Verbose", "Diagnostic")] - [string]$Verbosity = "Verbose", - [switch]$Experimental, - [Alias("DryRun","Noop")] - [switch]$WhatIf, - [switch]$Mono, - [switch]$SkipToolPackageRestore, - [Parameter(Position=0,Mandatory=$false,ValueFromRemainingArguments=$true)] - [string[]]$ScriptArgs -) - -[Reflection.Assembly]::LoadWithPartialName("System.Security") | Out-Null -function MD5HashFile([string] $filePath) -{ - if ([string]::IsNullOrEmpty($filePath) -or !(Test-Path $filePath -PathType Leaf)) - { - return $null - } - - [System.IO.Stream] $file = $null; - [System.Security.Cryptography.MD5] $md5 = $null; - try - { - $md5 = [System.Security.Cryptography.MD5]::Create() - $file = [System.IO.File]::OpenRead($filePath) - return [System.BitConverter]::ToString($md5.ComputeHash($file)) - } - finally - { - if ($file -ne $null) - { - $file.Dispose() - } - } -} - -Write-Host "Preparing to run build script..." - -if(!$PSScriptRoot){ - $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent -} - -$TOOLS_DIR = Join-Path $PSScriptRoot "tools" -$NUGET_EXE = Join-Path $TOOLS_DIR "nuget.exe" -$CAKE_EXE = Join-Path $TOOLS_DIR "Cake/Cake.exe" -$NUGET_URL = "https://dist.nuget.org/win-x86-commandline/v4.4.1/nuget.exe" -$PACKAGES_CONFIG = Join-Path $TOOLS_DIR "packages.config" -$PACKAGES_CONFIG_MD5 = Join-Path $TOOLS_DIR "packages.config.md5sum" - -# Should we use mono? -$UseMono = ""; -if($Mono.IsPresent) { - Write-Verbose -Message "Using the Mono based scripting engine." - $UseMono = "-mono" -} - -# Should we use the new Roslyn? -$UseExperimental = ""; -if($Experimental.IsPresent -and !($Mono.IsPresent)) { - Write-Verbose -Message "Using experimental version of Roslyn." - $UseExperimental = "-experimental" -} - -# Is this a dry run? -$UseDryRun = ""; -if($WhatIf.IsPresent) { - $UseDryRun = "-dryrun" -} - -# Make sure tools folder exists -if ((Test-Path $PSScriptRoot) -and !(Test-Path $TOOLS_DIR)) { - Write-Verbose -Message "Creating tools directory..." - New-Item -Path $TOOLS_DIR -Type directory | out-null -} - -# Make sure that packages.config exist. -if (!(Test-Path $PACKAGES_CONFIG)) { - Write-Verbose -Message "Downloading packages.config..." - try { (New-Object System.Net.WebClient).DownloadFile("http://cakebuild.net/download/bootstrapper/packages", $PACKAGES_CONFIG) } catch { - Throw "Could not download packages.config." - } -} - -# Try find NuGet.exe in path if not exists -if (!(Test-Path $NUGET_EXE)) { - Write-Verbose -Message "Trying to find nuget.exe in PATH..." - $existingPaths = $Env:Path -Split ';' | Where-Object { (![string]::IsNullOrEmpty($_)) -and (Test-Path $_) } - $NUGET_EXE_IN_PATH = Get-ChildItem -Path $existingPaths -Filter "nuget.exe" | Select -First 1 - if ($NUGET_EXE_IN_PATH -ne $null -and (Test-Path $NUGET_EXE_IN_PATH.FullName)) { - Write-Verbose -Message "Found in PATH at $($NUGET_EXE_IN_PATH.FullName)." - $NUGET_EXE = $NUGET_EXE_IN_PATH.FullName - } -} - -# Try download NuGet.exe if not exists -if (!(Test-Path $NUGET_EXE)) { - Write-Verbose -Message "Downloading NuGet.exe..." - try { - (New-Object System.Net.WebClient).DownloadFile($NUGET_URL, $NUGET_EXE) - } catch { - Throw "Could not download NuGet.exe." - } -} - -# Save nuget.exe path to environment to be available to child processed -$ENV:NUGET_EXE = $NUGET_EXE - -#Nexus Server Configuration -Write-Host "Configuring Nexus server..." -try -{ -Invoke-Expression "& `"$NUGET_EXE`" sources add -Name NexusServer -Source https://nexus.syncfusioninternal.com/repository/nuget-hosted/" -} -catch{ - throw new Exception("Nexus server configuration failed "); -} - -# Restore tools from NuGet? -if(-Not $SkipToolPackageRestore.IsPresent) { - Push-Location - Set-Location $TOOLS_DIR - - # Check for changes in packages.config and remove installed tools if true. - [string] $md5Hash = MD5HashFile($PACKAGES_CONFIG) - if((!(Test-Path $PACKAGES_CONFIG_MD5)) -Or - ($md5Hash -ne (Get-Content $PACKAGES_CONFIG_MD5 ))) { - Write-Verbose -Message "Missing or changed package.config hash..." - Remove-Item * -Recurse -Exclude packages.config,nuget.exe - } - - Write-Verbose -Message "Restoring tools from NuGet..." - $NuGetOutput = Invoke-Expression "&`"$NUGET_EXE`" install -ExcludeVersion -OutputDirectory `"$TOOLS_DIR`"" - - if ($LASTEXITCODE -ne 0) { - Throw "An error occured while restoring NuGet tools." - } - else - { - $md5Hash | Out-File $PACKAGES_CONFIG_MD5 -Encoding "ASCII" - } - Write-Verbose -Message ($NuGetOutput | out-string) - Pop-Location -} - -# Make sure that Cake has been installed. -if (!(Test-Path $CAKE_EXE)) { - Throw "Could not find Cake.exe at $CAKE_EXE" -} - -$isHomeEnvAvailable=Test-Path Env:\Home -if($isHomeEnvAvailable) -{ -Remove-Item Env:\Home -} - - -# Start Cake -Write-Host "Running build script..." -try{ -Invoke-Expression "& `"$CAKE_EXE`" `"$Script`" -project=`"$Project`" -platform=`"$Platform`" -studioversion=`"$StudioVersion`" -assemblyfileversion=`"$AssemblyFileVersion`" -target=`"$Target`" -outputpath=`"$OutputPath`" -PreReleaseNumber=`"$revisionNumber`" -nugetserverurl=`"$nugetserverurl`" -nugetapikey=`"$nugetapikey`" -SourceBranch=`"$SourceBranch`" -XAMLAWSAccessID=`"$XAMLAWSAccessID`" -XAMLAWSAccessKey=`"$XAMLAWSAccessKey`" -apiServerIP=`"$apiServerIP`" -apiServerPort=`"$apiServerPort`" -apiSiteName=`"$apiSiteName`" -apiServerUserName=`"$apiServerUserName`" -apiServerPassword=`"$apiServerPassword`" -referencepath=`"$ReferencePath`" -configuration=`"$Configuration`" -verbosity=`"$Verbosity`" $UseMono $UseDryRun $UseExperimental $ScriptArgs" -} -catch{ - throw new Exception("Build Failed") -} -exit $LASTEXITCODE diff --git a/build/git.cake b/build/git.cake deleted file mode 100644 index b7d033fe..00000000 --- a/build/git.cake +++ /dev/null @@ -1,60 +0,0 @@ -////////////////////////////////////////////////////////////////////// -// ARGUMENTS -////////////////////////////////////////////////////////////////////// - -//Information("Build Started at {}",DateTime.Now); - -var target = Argument("target", "Default"); -var configuration = Argument("configuration", "Release"); - -//////////////////////////////////////////////////////////////////// -// PREPARATION -////////////////////////////////////////////////////////////////////// - -var currentDirectory=MakeAbsolute(Directory("./")); - -Information("current Directory is {0}",currentDirectory); - -////////////////////////////////////////////////////////////////////// -// TASKS -////////////////////////////////////////////////////////////////////// - -Task("Clean") - .Does(() =>{ - CleanDirectories("./tools/hooks"); - CleanDirectories("../.git/hooks"); -}); - -Task("Restore-NuGet-Packages") - .IsDependentOn("Clean") - .Does(() =>{ - NuGetInstall("Syncfusion.Git.Templates", new NuGetInstallSettings { - ExcludeVersion = true, - OutputDirectory = "./tools/hooks/NuGetPackages", - Source=new List{"http://rs.syncfusion.com:1330/nuget"} - }); -}); - -Task("Install-Git-Templates") -.IsDependentOn("Restore-NuGet-Packages") -.Does(()=>{ - var files = GetFiles("./tools/hooks/NuGetPackages/Syncfusion.Git.Templates/tools/*"); - if (!DirectoryExists("../.git/hooks/")) - { - CreateDirectory("../.git/hooks/"); - } - CopyFiles(files, "../.git/hooks/"); -}); - -////////////////////////////////////////////////////////////////////// -// TASK TARGETS -////////////////////////////////////////////////////////////////////// - -Task("Default") - .IsDependentOn("Install-Git-Templates"); - -////////////////////////////////////////////////////////////////////// -// EXECUTION -////////////////////////////////////////////////////////////////////// - -RunTarget(target); \ No newline at end of file diff --git a/build/prebuild.ps1 b/build/prebuild.ps1 deleted file mode 100644 index bc10579b..00000000 --- a/build/prebuild.ps1 +++ /dev/null @@ -1,199 +0,0 @@ -########################################################################## -# This is the Cake bootstrapper script for PowerShell. -# This file was downloaded from https://github.com/cake-build/resources -# Feel free to change this file to fit your needs. -########################################################################## - -<# - -.SYNOPSIS -This is a Powershell script to bootstrap a Cake build. - -.DESCRIPTION -This Powershell script will download NuGet if missing, restore NuGet tools (including Cake) -and execute your Cake build script with the parameters you provide. - -.PARAMETER Script -The build script to execute. -.PARAMETER Target -The build script target to run. -.PARAMETER Configuration -The build configuration to use. -.PARAMETER Verbosity -Specifies the amount of information to be displayed. -.PARAMETER Experimental -Tells Cake to use the latest Roslyn release. -.PARAMETER WhatIf -Performs a dry run of the build script. -No tasks will be executed. -.PARAMETER Mono -Tells Cake to use the Mono scripting engine. -.PARAMETER SkipToolPackageRestore -Skips restoring of packages. -.PARAMETER ScriptArgs -Remaining arguments are added here. - -.LINK -http://cakebuild.net - -#> - -[CmdletBinding()] -Param( - [string]$Script = "build.cake", - [string]$Target = "Clean", - [string]$PreBuildPlatform = "", - [string]$ReferencePath = "", - [string]$OutputPath = "", - [string]$PrebuildProject = "", - [string]$Platform = "", - [string]$Project = "", - [string]$StudioVersion = "14.4.0.55", - [string]$AssemblyFileVersion = "", - [string]$nugetserverurl="", - [string]$nugetapikey="", - [ValidateSet("Release", "Debug")] - [string]$Configuration = "Release-Xml", - [ValidateSet("Quiet", "Minimal", "Normal", "Verbose", "Diagnostic")] - [string]$Verbosity = "Verbose", - [switch]$Experimental, - [Alias("DryRun","Noop")] - [switch]$WhatIf, - [switch]$Mono, - [switch]$SkipToolPackageRestore, - [Parameter(Position=0,Mandatory=$false,ValueFromRemainingArguments=$true)] - [string[]]$ScriptArgs -) - -[Reflection.Assembly]::LoadWithPartialName("System.Security") | Out-Null -function MD5HashFile([string] $filePath) -{ - if ([string]::IsNullOrEmpty($filePath) -or !(Test-Path $filePath -PathType Leaf)) - { - return $null - } - - [System.IO.Stream] $file = $null; - [System.Security.Cryptography.MD5] $md5 = $null; - try - { - $md5 = [System.Security.Cryptography.MD5]::Create() - $file = [System.IO.File]::OpenRead($filePath) - return [System.BitConverter]::ToString($md5.ComputeHash($file)) - } - finally - { - if ($file -ne $null) - { - $file.Dispose() - } - } -} - -Write-Host "Preparing to run build script..." - -if(!$PSScriptRoot){ - $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent -} - -$TOOLS_DIR = Join-Path $PSScriptRoot "tools" -$NUGET_EXE = Join-Path $TOOLS_DIR "nuget.exe" -$CAKE_EXE = Join-Path $TOOLS_DIR "Cake/Cake.exe" -$NUGET_URL = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" -$PACKAGES_CONFIG = Join-Path $TOOLS_DIR "packages.config" -$PACKAGES_CONFIG_MD5 = Join-Path $TOOLS_DIR "packages.config.md5sum" - -# Should we use mono? -$UseMono = ""; -if($Mono.IsPresent) { - Write-Verbose -Message "Using the Mono based scripting engine." - $UseMono = "-mono" -} - -# Should we use the new Roslyn? -$UseExperimental = ""; -if($Experimental.IsPresent -and !($Mono.IsPresent)) { - Write-Verbose -Message "Using experimental version of Roslyn." - $UseExperimental = "-experimental" -} - -# Is this a dry run? -$UseDryRun = ""; -if($WhatIf.IsPresent) { - $UseDryRun = "-dryrun" -} - -# Make sure tools folder exists -if ((Test-Path $PSScriptRoot) -and !(Test-Path $TOOLS_DIR)) { - Write-Verbose -Message "Creating tools directory..." - New-Item -Path $TOOLS_DIR -Type directory | out-null -} - -# Make sure that packages.config exist. -if (!(Test-Path $PACKAGES_CONFIG)) { - Write-Verbose -Message "Downloading packages.config..." - try { (New-Object System.Net.WebClient).DownloadFile("http://cakebuild.net/download/bootstrapper/packages", $PACKAGES_CONFIG) } catch { - Throw "Could not download packages.config." - } -} - -# Try find NuGet.exe in path if not exists -if (!(Test-Path $NUGET_EXE)) { - Write-Verbose -Message "Trying to find nuget.exe in PATH..." - $existingPaths = $Env:Path -Split ';' | Where-Object { (![string]::IsNullOrEmpty($_)) -and (Test-Path $_) } - $NUGET_EXE_IN_PATH = Get-ChildItem -Path $existingPaths -Filter "nuget.exe" | Select -First 1 - if ($NUGET_EXE_IN_PATH -ne $null -and (Test-Path $NUGET_EXE_IN_PATH.FullName)) { - Write-Verbose -Message "Found in PATH at $($NUGET_EXE_IN_PATH.FullName)." - $NUGET_EXE = $NUGET_EXE_IN_PATH.FullName - } -} - -# Try download NuGet.exe if not exists -if (!(Test-Path $NUGET_EXE)) { - Write-Verbose -Message "Downloading NuGet.exe..." - try { - (New-Object System.Net.WebClient).DownloadFile($NUGET_URL, $NUGET_EXE) - } catch { - Throw "Could not download NuGet.exe." - } -} - -# Save nuget.exe path to environment to be available to child processed -$ENV:NUGET_EXE = $NUGET_EXE - -# Restore tools from NuGet? -if(-Not $SkipToolPackageRestore.IsPresent) { - Push-Location - Set-Location $TOOLS_DIR - - # Check for changes in packages.config and remove installed tools if true. - [string] $md5Hash = MD5HashFile($PACKAGES_CONFIG) - if((!(Test-Path $PACKAGES_CONFIG_MD5)) -Or - ($md5Hash -ne (Get-Content $PACKAGES_CONFIG_MD5 ))) { - Write-Verbose -Message "Missing or changed package.config hash..." - Remove-Item * -Recurse -Exclude packages.config,nuget.exe - } - - Write-Verbose -Message "Restoring tools from NuGet..." - $NuGetOutput = Invoke-Expression "&`"$NUGET_EXE`" install -ExcludeVersion -OutputDirectory `"$TOOLS_DIR`"" - - if ($LASTEXITCODE -ne 0) { - Throw "An error occured while restoring NuGet tools." - } - else - { - $md5Hash | Out-File $PACKAGES_CONFIG_MD5 -Encoding "ASCII" - } - Write-Verbose -Message ($NuGetOutput | out-string) - Pop-Location -} - -# Make sure that Cake has been installed. -if (!(Test-Path $CAKE_EXE)) { - Throw "Could not find Cake.exe at $CAKE_EXE" -} - -# Start Cake -Write-Host "Running build script..." -Invoke-Expression "& `"$CAKE_EXE`" `"$Script`" -prebuildproject=`"$PrebuildProject`" -project=`"$Project`" -platform=`"$Platform`" -studioversion=`"$StudioVersion`" -assemblyfileversion=`"$AssemblyFileVersion`" -target=`"$Target`" -outputpath=`"$OutputPath`" -prebuildplatform=`"$PreBuildPlatform`" -nugetserverurl=`"$nugetserverurl`" -nugetapikey=`"$nugetapikey`" -referencepath=`"$ReferencePath`" -configuration=`"$Configuration`" -verbosity=`"$Verbosity`" $UseMono $UseDryRun $UseExperimental $ScriptArgs" -exit $LASTEXITCODE \ No newline at end of file diff --git a/build/tools/packages.config b/build/tools/packages.config deleted file mode 100644 index 71c95498..00000000 --- a/build/tools/packages.config +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/calendar/App.xaml b/calendar/App.xaml deleted file mode 100644 index 7c71f8b4..00000000 --- a/calendar/App.xaml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/calendar/App.xaml.cs b/calendar/App.xaml.cs deleted file mode 100644 index a0fa80f7..00000000 --- a/calendar/App.xaml.cs +++ /dev/null @@ -1,106 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices.WindowsRuntime; -using Windows.ApplicationModel; -using Windows.ApplicationModel.Activation; -using Windows.Foundation; -using Windows.Foundation.Collections; -using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Controls; -using Microsoft.UI.Xaml.Controls.Primitives; -using Microsoft.UI.Xaml.Data; -using Microsoft.UI.Xaml.Input; -using Microsoft.UI.Xaml.Media; -using Microsoft.UI.Xaml.Navigation; -using Windows.ApplicationModel.Core; -using Syncfusion.DemosCommon.WinUI; - -// To learn more about WinUI, the WinUI project structure, -// and more about our project templates, see: http://aka.ms/winui-project-info. - -namespace Syncfusion.CalendarDemos.WinUI -{ - /// - /// Provides application-specific behavior to supplement the default Application class. - /// - sealed partial class App : Application - { - /// - /// Initializes the singleton application object. This is the first line of authored code - /// executed, and as such is the logical equivalent of main() or WinMain(). - /// - public App() - { - this.InitializeComponent(); - } - - /// - /// Invoked when the application is launched normally by the end user. Other entry points - /// will be used such as when the application is launched to open a specific file. - /// - /// Details about the launch request and process. - protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs e) - { - m_window = new MainWindow(); - m_window.Activate(); - Frame rootFrame = m_window.Content as Frame; - - - // Do not repeat app initialization when the Window already has content, - // just ensure that the window is active - if (rootFrame == null) - { - // Create a Frame to act as the navigation context and navigate to the first page - rootFrame = new Frame(); - - // rootFrame.NavigationFailed += OnNavigationFailed; - - if (e != null && e.UWPLaunchActivatedEventArgs.PreviousExecutionState == ApplicationExecutionState.Terminated) - { - //TODO: Load state from previously suspended application - } - - // Place the frame in the current Window - m_window.Content = rootFrame; - } - - // if (args != null && args.UWPLaunchActivatedEventArgs.PrelaunchActivated == false) - { -#pragma warning disable CA1806 // Do not ignore method results - new SamplesConfiguration(); -#pragma warning restore CA1806 // Do not ignore method results - if (rootFrame.Content == null) - { - // When the navigation stack isn't restored navigate to the first page, - // configuring the new page by passing required information as a navigation - // parameter - rootFrame.Navigate(typeof(DemosCommon.WinUI.MainPage), e.Arguments); - } - // Ensure the current window is active - m_window.Activate(); - } - ThemeHelper.CurrentApplicationWindow = m_window; - } - - /// - /// Invoked when Navigation to a certain page fails - /// - /// The Frame which failed navigation - /// Details about the navigation failure - void OnNavigationFailed(object sender, NavigationFailedEventArgs e) - { - throw new Exception("Failed to load Page " + e.SourcePageType.FullName); - } - - private MainWindow m_window; - } -} diff --git a/calendar/Assets/Cal/BlackoutDates_cs.txt b/calendar/Assets/Cal/BlackoutDates_cs.txt deleted file mode 100644 index 93f417cf..00000000 --- a/calendar/Assets/Cal/BlackoutDates_cs.txt +++ /dev/null @@ -1,13 +0,0 @@ -public class ViewModel -{ - public DateTimeOffsetCollection BlackoutSpecificDates { get; set; } - - public ViewModel() - { - BlackoutSpecificDates = new DateTimeOffsetCollection(); - BlackoutSpecificDates.Add(new DateTimeOffset(new DateTime(2021, 04, 4))); - BlackoutSpecificDates.Add(new DateTimeOffset(new DateTime(2021, 04, 11))); - BlackoutSpecificDates.Add(new DateTimeOffset(new DateTime(2021, 04, 28))); - ... - } -} \ No newline at end of file diff --git a/calendar/Assets/Cal/BlackoutDates_xaml.txt b/calendar/Assets/Cal/BlackoutDates_xaml.txt deleted file mode 100644 index e80c8a5a..00000000 --- a/calendar/Assets/Cal/BlackoutDates_xaml.txt +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/Cal/CalendarTypes_xaml.txt b/calendar/Assets/Cal/CalendarTypes_xaml.txt deleted file mode 100644 index da0705fb..00000000 --- a/calendar/Assets/Cal/CalendarTypes_xaml.txt +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/Cal/DateNavigation_xaml.txt b/calendar/Assets/Cal/DateNavigation_xaml.txt deleted file mode 100644 index 964f4773..00000000 --- a/calendar/Assets/Cal/DateNavigation_xaml.txt +++ /dev/null @@ -1,7 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/Cal/Formatting_xaml.txt b/calendar/Assets/Cal/Formatting_xaml.txt deleted file mode 100644 index 33f2187b..00000000 --- a/calendar/Assets/Cal/Formatting_xaml.txt +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/Cal/ItemTemplateSelector_cs.txt b/calendar/Assets/Cal/ItemTemplateSelector_cs.txt deleted file mode 100644 index 69ae25ae..00000000 --- a/calendar/Assets/Cal/ItemTemplateSelector_cs.txt +++ /dev/null @@ -1,39 +0,0 @@ -public class CustomCalendarItemTemplateSelector : DataTemplateSelector -{ - public CustomCalendarItemTemplateSelector() - { - SpecialDates = new Dictionary(); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(-1).AddDays(1), "SingleEvent_1"); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(-1).AddDays(5), "DoubleEvent_1"); - ... - } - - private Dictionary SpecialDates { get; set; } - - protected override DataTemplate SelectTemplateCore(object item, DependencyObject container) - { - if (item != null) - { - DateTimeOffset calendarItem = (DateTimeOffset)item; - DateTimeOffset dateTimeOffset = SpecialDates.Keys.FirstOrDefault(x => x.Date == calendarItem.Date); - - if (dateTimeOffset != DateTimeOffset.MinValue) - { - string template = this.SpecialDates[dateTimeOffset]; - - switch (template) - { - case "SingleEvent_1": - return Application.Current.Resources["singleEventTemplate_1"] as DataTemplate; - case "DoubleEvent_1": - return Application.Current.Resources["doubleEventTemplate_1"] as DataTemplate; - ... - } - } - - return Application.Current.Resources["defaultTemplate"] as DataTemplate; - } - - return base.SelectTemplateCore(item, container); - } -} \ No newline at end of file diff --git a/calendar/Assets/Cal/ItemTemplateSelector_xaml.txt b/calendar/Assets/Cal/ItemTemplateSelector_xaml.txt deleted file mode 100644 index 16484e1c..00000000 --- a/calendar/Assets/Cal/ItemTemplateSelector_xaml.txt +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - diff --git a/calendar/Assets/Cal/SimpleCalendar_xaml.txt b/calendar/Assets/Cal/SimpleCalendar_xaml.txt deleted file mode 100644 index 8f83ba4c..00000000 --- a/calendar/Assets/Cal/SimpleCalendar_xaml.txt +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/Cal/ThemeKeyCustomization_xaml.txt b/calendar/Assets/Cal/ThemeKeyCustomization_xaml.txt deleted file mode 100644 index eecb1d80..00000000 --- a/calendar/Assets/Cal/ThemeKeyCustomization_xaml.txt +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - 1.5 - 30 - ... - - - - - \ No newline at end of file diff --git a/calendar/Assets/Cal/WeekNumber_xaml.txt b/calendar/Assets/Cal/WeekNumber_xaml.txt deleted file mode 100644 index 33647418..00000000 --- a/calendar/Assets/Cal/WeekNumber_xaml.txt +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDP/BlackoutDates_cs.txt b/calendar/Assets/CalDP/BlackoutDates_cs.txt deleted file mode 100644 index 93f417cf..00000000 --- a/calendar/Assets/CalDP/BlackoutDates_cs.txt +++ /dev/null @@ -1,13 +0,0 @@ -public class ViewModel -{ - public DateTimeOffsetCollection BlackoutSpecificDates { get; set; } - - public ViewModel() - { - BlackoutSpecificDates = new DateTimeOffsetCollection(); - BlackoutSpecificDates.Add(new DateTimeOffset(new DateTime(2021, 04, 4))); - BlackoutSpecificDates.Add(new DateTimeOffset(new DateTime(2021, 04, 11))); - BlackoutSpecificDates.Add(new DateTimeOffset(new DateTime(2021, 04, 28))); - ... - } -} \ No newline at end of file diff --git a/calendar/Assets/CalDP/BlackoutDates_xaml.txt b/calendar/Assets/CalDP/BlackoutDates_xaml.txt deleted file mode 100644 index dd82b148..00000000 --- a/calendar/Assets/CalDP/BlackoutDates_xaml.txt +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDP/CalendarTypes_xaml.txt b/calendar/Assets/CalDP/CalendarTypes_xaml.txt deleted file mode 100644 index ac678947..00000000 --- a/calendar/Assets/CalDP/CalendarTypes_xaml.txt +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDP/Formatting_xaml.txt b/calendar/Assets/CalDP/Formatting_xaml.txt deleted file mode 100644 index 3753b389..00000000 --- a/calendar/Assets/CalDP/Formatting_xaml.txt +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDP/ItemTemplateSelector_cs.txt b/calendar/Assets/CalDP/ItemTemplateSelector_cs.txt deleted file mode 100644 index 69ae25ae..00000000 --- a/calendar/Assets/CalDP/ItemTemplateSelector_cs.txt +++ /dev/null @@ -1,39 +0,0 @@ -public class CustomCalendarItemTemplateSelector : DataTemplateSelector -{ - public CustomCalendarItemTemplateSelector() - { - SpecialDates = new Dictionary(); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(-1).AddDays(1), "SingleEvent_1"); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(-1).AddDays(5), "DoubleEvent_1"); - ... - } - - private Dictionary SpecialDates { get; set; } - - protected override DataTemplate SelectTemplateCore(object item, DependencyObject container) - { - if (item != null) - { - DateTimeOffset calendarItem = (DateTimeOffset)item; - DateTimeOffset dateTimeOffset = SpecialDates.Keys.FirstOrDefault(x => x.Date == calendarItem.Date); - - if (dateTimeOffset != DateTimeOffset.MinValue) - { - string template = this.SpecialDates[dateTimeOffset]; - - switch (template) - { - case "SingleEvent_1": - return Application.Current.Resources["singleEventTemplate_1"] as DataTemplate; - case "DoubleEvent_1": - return Application.Current.Resources["doubleEventTemplate_1"] as DataTemplate; - ... - } - } - - return Application.Current.Resources["defaultTemplate"] as DataTemplate; - } - - return base.SelectTemplateCore(item, container); - } -} \ No newline at end of file diff --git a/calendar/Assets/CalDP/ItemTemplateSelector_xaml.txt b/calendar/Assets/CalDP/ItemTemplateSelector_xaml.txt deleted file mode 100644 index 7041f1ca..00000000 --- a/calendar/Assets/CalDP/ItemTemplateSelector_xaml.txt +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/calendar/Assets/CalDP/Navigation_xaml.txt b/calendar/Assets/CalDP/Navigation_xaml.txt deleted file mode 100644 index 25e6370a..00000000 --- a/calendar/Assets/CalDP/Navigation_xaml.txt +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDP/SimpleCalendarDatePicker_xaml.txt b/calendar/Assets/CalDP/SimpleCalendarDatePicker_xaml.txt deleted file mode 100644 index e09b4b3a..00000000 --- a/calendar/Assets/CalDP/SimpleCalendarDatePicker_xaml.txt +++ /dev/null @@ -1,7 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDP/ThemeKeyCustomization_xaml.txt b/calendar/Assets/CalDP/ThemeKeyCustomization_xaml.txt deleted file mode 100644 index 79dda008..00000000 --- a/calendar/Assets/CalDP/ThemeKeyCustomization_xaml.txt +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - 1.5 - 30 - ... - - - - - - - - \ No newline at end of file diff --git a/calendar/Assets/CalDRP/BlackoutDates_cs.txt b/calendar/Assets/CalDRP/BlackoutDates_cs.txt deleted file mode 100644 index 93f417cf..00000000 --- a/calendar/Assets/CalDRP/BlackoutDates_cs.txt +++ /dev/null @@ -1,13 +0,0 @@ -public class ViewModel -{ - public DateTimeOffsetCollection BlackoutSpecificDates { get; set; } - - public ViewModel() - { - BlackoutSpecificDates = new DateTimeOffsetCollection(); - BlackoutSpecificDates.Add(new DateTimeOffset(new DateTime(2021, 04, 4))); - BlackoutSpecificDates.Add(new DateTimeOffset(new DateTime(2021, 04, 11))); - BlackoutSpecificDates.Add(new DateTimeOffset(new DateTime(2021, 04, 28))); - ... - } -} \ No newline at end of file diff --git a/calendar/Assets/CalDRP/BlackoutDates_xaml.txt b/calendar/Assets/CalDRP/BlackoutDates_xaml.txt deleted file mode 100644 index dc6a4b81..00000000 --- a/calendar/Assets/CalDRP/BlackoutDates_xaml.txt +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDRP/CalendarTypes_xaml.txt b/calendar/Assets/CalDRP/CalendarTypes_xaml.txt deleted file mode 100644 index cf17d8cc..00000000 --- a/calendar/Assets/CalDRP/CalendarTypes_xaml.txt +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDRP/DateRangePicker_xaml.txt b/calendar/Assets/CalDRP/DateRangePicker_xaml.txt deleted file mode 100644 index 05467055..00000000 --- a/calendar/Assets/CalDRP/DateRangePicker_xaml.txt +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDRP/Formatting_xaml.txt b/calendar/Assets/CalDRP/Formatting_xaml.txt deleted file mode 100644 index 82a1230c..00000000 --- a/calendar/Assets/CalDRP/Formatting_xaml.txt +++ /dev/null @@ -1,7 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDRP/ItemTemplateSelector_cs.txt b/calendar/Assets/CalDRP/ItemTemplateSelector_cs.txt deleted file mode 100644 index 69ae25ae..00000000 --- a/calendar/Assets/CalDRP/ItemTemplateSelector_cs.txt +++ /dev/null @@ -1,39 +0,0 @@ -public class CustomCalendarItemTemplateSelector : DataTemplateSelector -{ - public CustomCalendarItemTemplateSelector() - { - SpecialDates = new Dictionary(); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(-1).AddDays(1), "SingleEvent_1"); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(-1).AddDays(5), "DoubleEvent_1"); - ... - } - - private Dictionary SpecialDates { get; set; } - - protected override DataTemplate SelectTemplateCore(object item, DependencyObject container) - { - if (item != null) - { - DateTimeOffset calendarItem = (DateTimeOffset)item; - DateTimeOffset dateTimeOffset = SpecialDates.Keys.FirstOrDefault(x => x.Date == calendarItem.Date); - - if (dateTimeOffset != DateTimeOffset.MinValue) - { - string template = this.SpecialDates[dateTimeOffset]; - - switch (template) - { - case "SingleEvent_1": - return Application.Current.Resources["singleEventTemplate_1"] as DataTemplate; - case "DoubleEvent_1": - return Application.Current.Resources["doubleEventTemplate_1"] as DataTemplate; - ... - } - } - - return Application.Current.Resources["defaultTemplate"] as DataTemplate; - } - - return base.SelectTemplateCore(item, container); - } -} \ No newline at end of file diff --git a/calendar/Assets/CalDRP/ItemTemplateSelector_xaml.txt b/calendar/Assets/CalDRP/ItemTemplateSelector_xaml.txt deleted file mode 100644 index cdbf8683..00000000 --- a/calendar/Assets/CalDRP/ItemTemplateSelector_xaml.txt +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/calendar/Assets/CalDRP/Navigation_xaml.txt b/calendar/Assets/CalDRP/Navigation_xaml.txt deleted file mode 100644 index 799e5394..00000000 --- a/calendar/Assets/CalDRP/Navigation_xaml.txt +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDRP/Preset_xaml.txt b/calendar/Assets/CalDRP/Preset_xaml.txt deleted file mode 100644 index fa8cc504..00000000 --- a/calendar/Assets/CalDRP/Preset_xaml.txt +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDRP/RangeSelection_xaml.txt b/calendar/Assets/CalDRP/RangeSelection_xaml.txt deleted file mode 100644 index 61afebac..00000000 --- a/calendar/Assets/CalDRP/RangeSelection_xaml.txt +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/calendar/Assets/CalDRP/ThemeKeyCustomization_xaml.txt b/calendar/Assets/CalDRP/ThemeKeyCustomization_xaml.txt deleted file mode 100644 index f30cb847..00000000 --- a/calendar/Assets/CalDRP/ThemeKeyCustomization_xaml.txt +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - 1.5 - 30 - ... - - - - - - - - \ No newline at end of file diff --git a/calendar/Assets/LockScreenLogo.scale-200.png b/calendar/Assets/LockScreenLogo.scale-200.png deleted file mode 100644 index 0bcb25b2..00000000 Binary files a/calendar/Assets/LockScreenLogo.scale-200.png and /dev/null differ diff --git a/calendar/Assets/SplashScreen.scale-200.png b/calendar/Assets/SplashScreen.scale-200.png deleted file mode 100644 index 50c04eeb..00000000 Binary files a/calendar/Assets/SplashScreen.scale-200.png and /dev/null differ diff --git a/calendar/Assets/Square150x150Logo.scale-200.png b/calendar/Assets/Square150x150Logo.scale-200.png deleted file mode 100644 index a496976c..00000000 Binary files a/calendar/Assets/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/calendar/Assets/Square44x44Logo.scale-200.png b/calendar/Assets/Square44x44Logo.scale-200.png deleted file mode 100644 index e427f719..00000000 Binary files a/calendar/Assets/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/calendar/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/calendar/Assets/Square44x44Logo.targetsize-24_altform-unplated.png deleted file mode 100644 index f6c02ce9..00000000 Binary files a/calendar/Assets/Square44x44Logo.targetsize-24_altform-unplated.png and /dev/null differ diff --git a/calendar/Assets/StoreLogo.png b/calendar/Assets/StoreLogo.png deleted file mode 100644 index 9e4b0328..00000000 Binary files a/calendar/Assets/StoreLogo.png and /dev/null differ diff --git a/calendar/Assets/Wide310x150Logo.scale-200.png b/calendar/Assets/Wide310x150Logo.scale-200.png deleted file mode 100644 index 1d502c99..00000000 Binary files a/calendar/Assets/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/calendar/Converter/DateFormatToDisplayFormatConverter.cs b/calendar/Converter/DateFormatToDisplayFormatConverter.cs deleted file mode 100644 index 9ee7cc04..00000000 --- a/calendar/Converter/DateFormatToDisplayFormatConverter.cs +++ /dev/null @@ -1,115 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Microsoft.UI.Xaml.Data; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Syncfusion.CalendarDemos.WinUI -{ - public class DateFormatToDisplayFormatConverter : IValueConverter - { - public object Convert(object value, Type targetType, object parameter, string language) - { - var option = value.ToString(); - var abb = "Abbreviated"; - var full = "Full"; - var num = "Number"; - - - switch (parameter.ToString()) - { - case "day": - if (option == abb) - { - return "{day.integer}"; - } - else if (option == full) - { - return "{day.integer(2)}"; - } - break; - - case "month": - if (option == abb) - { - return "{month.abbreviated}"; - } - else if (option == full) - { - return "{month.full}"; - } - else if (option == num) - { - return "{month.integer}"; - } - break; - - case "dayofweek": - if (option == "Abbreviated - 2 char") - { - return "{dayofweek.abbreviated(2)}"; - } - else if (option == "Abbreviated - 3 char") - { - return "{dayofweek.abbreviated(3)}"; - } - else if (option == "Full") - { - return "{dayofweek.full}"; - } - break; - - case "header": - if (option == abb) - { - return "{month.abbreviated} {year.abbreviated}‎"; - } - else if (option == full) - { - return "month year"; - } - break; - } - - return null; - } - - public object ConvertBack(object value, Type targetType, object parameter, string language) - { - throw new NotImplementedException(); - } - } - - public class ValueToUlongConverter : IValueConverter - { - public object Convert(object value, Type targetType, object parameter, string language) - { - if (value != null) - { - double.TryParse(value.ToString(), out double count); - return count; - } - - return 0; - } - - public object ConvertBack(object value, Type targetType, object parameter, string language) - { - if (value == null) - return 0; - else - { - ulong.TryParse(value.ToString(), out ulong count); - return count; - } - } - } -} diff --git a/calendar/MainWindow.xaml b/calendar/MainWindow.xaml deleted file mode 100644 index a6ae1064..00000000 --- a/calendar/MainWindow.xaml +++ /dev/null @@ -1,11 +0,0 @@ - - - - diff --git a/calendar/MainWindow.xaml.cs b/calendar/MainWindow.xaml.cs deleted file mode 100644 index 0fe3b2a2..00000000 --- a/calendar/MainWindow.xaml.cs +++ /dev/null @@ -1,39 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Controls; -using Microsoft.UI.Xaml.Controls.Primitives; -using Microsoft.UI.Xaml.Data; -using Microsoft.UI.Xaml.Input; -using Microsoft.UI.Xaml.Media; -using Microsoft.UI.Xaml.Navigation; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices.WindowsRuntime; -using Windows.Foundation; -using Windows.Foundation.Collections; - -// To learn more about WinUI, the WinUI project structure, -// and more about our project templates, see: http://aka.ms/winui-project-info. - -namespace Syncfusion.CalendarDemos.WinUI -{ - /// - /// An empty window that can be used on its own or navigated to within a Frame. - /// - public sealed partial class MainWindow : Window - { - public MainWindow() - { - this.InitializeComponent(); - this.Title = "Syncfusion Calendar Controls Gallery for WinUI Desktop"; - } - } -} diff --git a/calendar/Package.appxmanifest b/calendar/Package.appxmanifest deleted file mode 100644 index c1f7bbcd..00000000 --- a/calendar/Package.appxmanifest +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - Syncfusion WinUI Calendar Controls Gallery - Syncfusion - Assets\StoreLogo.png - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/calendar/Properties/AssemblyInfo.cs b/calendar/Properties/AssemblyInfo.cs deleted file mode 100644 index 51c3002b..00000000 --- a/calendar/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Syncfusion.CalendarDemos.WinUI")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Syncfusion Inc.")] -[assembly: AssemblyProduct("Syncfusion.CalendarDemos.WinUI")] -[assembly: AssemblyCopyright("Copyright © 2001-2024 Syncfusion Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("25.2.3")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: ComVisible(false)] \ No newline at end of file diff --git a/calendar/Properties/Default.rd.xml b/calendar/Properties/Default.rd.xml deleted file mode 100644 index af00722c..00000000 --- a/calendar/Properties/Default.rd.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/calendar/Properties/PublishProfiles/win10-arm64.pubxml b/calendar/Properties/PublishProfiles/win10-arm64.pubxml deleted file mode 100644 index a132e44c..00000000 --- a/calendar/Properties/PublishProfiles/win10-arm64.pubxml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - FileSystem - arm64 - win10-arm64 - bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ - true - False - False - True - - - \ No newline at end of file diff --git a/calendar/Properties/PublishProfiles/win10-x64.pubxml b/calendar/Properties/PublishProfiles/win10-x64.pubxml deleted file mode 100644 index 26ea7e55..00000000 --- a/calendar/Properties/PublishProfiles/win10-x64.pubxml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - FileSystem - x64 - win10-x64 - bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ - true - False - False - True - - - \ No newline at end of file diff --git a/calendar/Properties/PublishProfiles/win10-x86.pubxml b/calendar/Properties/PublishProfiles/win10-x86.pubxml deleted file mode 100644 index 34d14d4d..00000000 --- a/calendar/Properties/PublishProfiles/win10-x86.pubxml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - FileSystem - x86 - win10-x86 - bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ - true - False - False - True - - - \ No newline at end of file diff --git a/calendar/Properties/launchSettings.json b/calendar/Properties/launchSettings.json deleted file mode 100644 index 4b2af8c9..00000000 --- a/calendar/Properties/launchSettings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "profiles": { - "Syncfusion.CalendarDemos.WinUI": { - "commandName": "MsixPackage" - } - } -} \ No newline at end of file diff --git a/calendar/SamplesConfiguration.cs b/calendar/SamplesConfiguration.cs deleted file mode 100644 index 914508ef..00000000 --- a/calendar/SamplesConfiguration.cs +++ /dev/null @@ -1,183 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Syncfusion.DemosCommon.WinUI; -using System; -using System.Collections.Generic; - -namespace Syncfusion.CalendarDemos.WinUI -{ - public class SamplesConfiguration - { - public SamplesConfiguration() - { - DemoInfo calendarDemo = new DemoInfo() - { - Name = "Getting Started", - Category = "Calendar", - DemoType = DemoTypes.None, - Description = "The Calendar allows users to select the date.", - DemoView = typeof(Views.Calendar.CalendarView), - ShowInfoPanel=true - }; - List calendarDemoDocumentations = new List(); - calendarDemoDocumentations.Add(new Documentation() { Content = "Calendar - API Reference", Uri = new Uri("https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Calendar.SfCalendar.html") }); - calendarDemoDocumentations.Add(new Documentation() { Content = "Calendar - Getting Started", Uri = new Uri("https://help.syncfusion.com/winui/calendar/getting-started") }); - calendarDemoDocumentations.Add(new Documentation() { Content = "Calendar - Date Selection", Uri = new Uri("https://help.syncfusion.com/winui/calendar/selection") }); - calendarDemoDocumentations.Add(new Documentation() { Content = "Calendar - View Navigation", Uri = new Uri("https://help.syncfusion.com/winui/calendar/navigation") }); - calendarDemoDocumentations.Add(new Documentation() { Content = "Calendar - Calendar Types", Uri = new Uri("https://help.syncfusion.com/winui/calendar/localization-and-formatting#types-of-calendar") }); - calendarDemo.Documentation.AddRange(calendarDemoDocumentations); - - DemoInfo calendarCustomizationDemo = new DemoInfo() - { - Name = "Customization", - Category = "Calendar", - DemoType = DemoTypes.None, - Description = "Customization of the dates.", - DemoView = typeof(Views.Calendar.Customization), - ShowInfoPanel = true - }; - List calendarCustomizationDemoDocumentations = new List(); - calendarCustomizationDemoDocumentations.Add(new Documentation() { Content = "Calendar - API Reference", Uri = new Uri("https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Calendar.SfCalendar.html") }); - calendarCustomizationDemoDocumentations.Add(new Documentation() { Content = "Calendar - Getting Started", Uri = new Uri("https://help.syncfusion.com/winui/calendar/getting-started") }); - calendarCustomizationDemoDocumentations.Add(new Documentation() { Content = "Calendar - Date Formatting", Uri = new Uri("https://help.syncfusion.com/winui/calendar/localization-and-formatting#change-date-display-format") }); - calendarCustomizationDemoDocumentations.Add(new Documentation() { Content = "Calendar - Block All Weekends", Uri = new Uri("https://help.syncfusion.com/winui/calendar/restrict-date-selection#disable-dates-dynamically-all-weekend-days") }); - calendarCustomizationDemoDocumentations.Add(new Documentation() { Content = "Calendar - Block Specific Dates", Uri = new Uri("https://help.syncfusion.com/winui/calendar/restrict-date-selection#disable-dates-using-blackoutdates") }); - calendarCustomizationDemo.Documentation.AddRange(calendarCustomizationDemoDocumentations); - - DemoInfo calendarStylesAndTemplatesDemo = new DemoInfo() - { - Name = "Styles and Templates", - Category = "Calendar", - DemoType = DemoTypes.None, - Description = "Customization of styles and templates of the Calendar.", - DemoView = typeof(Views.Calendar.StylesAndTemplates), - ShowInfoPanel = true - }; - List calendarStylesAndTemplatesDemoDocumentations = new List(); - calendarStylesAndTemplatesDemoDocumentations.Add(new Documentation() { Content = "Calendar - API Reference", Uri = new Uri("https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Calendar.SfCalendar.html") }); - calendarStylesAndTemplatesDemoDocumentations.Add(new Documentation() { Content = "Calendar - Getting Started", Uri = new Uri("https://help.syncfusion.com/winui/calendar/getting-started") }); - calendarStylesAndTemplatesDemoDocumentations.Add(new Documentation() { Content = "Calendar - Specific Cell's Custom UI", Uri = new Uri("https://help.syncfusion.com/winui/calendar/ui-customization#custom-ui-for-specific-cell-in-calendar") }); - calendarStylesAndTemplatesDemo.Documentation.AddRange(calendarStylesAndTemplatesDemoDocumentations); - - var calendar = new ControlInfo() - { - Control = DemoControl.SfCalendar, - ControlBadge = ControlBadge.None, - ControlCategory = ControlCategory.Calendars, - Description = "The Calendar control allows user to select a date or dates quickly using built-in month, year, decade, and century views.", - Glyph = "\uE710", - ImageSource= "Calendar.png" - }; - calendar.Demos.Add(calendarDemo); - calendar.Demos.Add(calendarCustomizationDemo); - calendar.Demos.Add(calendarStylesAndTemplatesDemo); - - DemoInfo calendarDatePickerDemo = new DemoInfo() - { - Name = "Getting Started", - Category = "Calendar Date Picker", - DemoType = DemoTypes.None, - Description = "The Calendar Date Picker allows users to select the date through a drop-down menu.", - DemoView = typeof(Views.CalendarDatePicker.CalendarDatePickerView), - ShowInfoPanel = true - }; - List calendarDatePickerDemoDocumentations = new List(); - calendarDatePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDatePicker - API Reference", Uri = new Uri("https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Calendar.SfCalendarDatePicker.html") }); - calendarDatePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDatePicker - Getting Started", Uri = new Uri("https://help.syncfusion.com/winui/calendar-datepicker/getting-started") }); - calendarDatePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDatePicker - View Navigation", Uri = new Uri("https://help.syncfusion.com/winui/calendar-date-picker/navigation") }); - calendarDatePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDatePicker - Calendar Types", Uri = new Uri("https://help.syncfusion.com/winui/calendar-date-picker/localization-and-formatting#types-of-calendar") }); - calendarDatePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDatePicker - Date Formatting", Uri = new Uri("https://help.syncfusion.com/winui/calendar-date-picker/localization-and-formatting#change-calendar-display-format") }); - calendarDatePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDatePicker - Block Specific Dates", Uri = new Uri("https://help.syncfusion.com/winui/calendar-date-picker/date-selection-and-restriction#block-dates-using-blackoutdates") }); - calendarDatePickerDemo.Documentation.AddRange(calendarDatePickerDemoDocumentations); - - DemoInfo calendarDatePickerCustomizationDemo = new DemoInfo() - { - Name = "Styles and Templates", - Category = "Calendar Date Picker", - DemoType = DemoTypes.None, - Description = "Customization of styles and templates of the Calendar Date Picker.", - DemoView = typeof(Views.CalendarDatePicker.Customization), - ShowInfoPanel = true - }; - List calendarDatePickerCustomizationDemoDocumentations = new List(); - calendarDatePickerCustomizationDemoDocumentations.Add(new Documentation() { Content = "CalendarDatePicker - API Reference", Uri = new Uri("https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Calendar.SfCalendarDatePicker.html") }); - calendarDatePickerCustomizationDemoDocumentations.Add(new Documentation() { Content = "CalendarDatePicker - Getting Started", Uri = new Uri("https://help.syncfusion.com/winui/calendar-datepicker/getting-started") }); - calendarDatePickerCustomizationDemoDocumentations.Add(new Documentation() { Content = "CalendarDatePicker - Specific Cell's Custom UI", Uri = new Uri("https://help.syncfusion.com/winui/calendar-date-picker/calendar-ui-customization#customize-individual-items-in-calendar") }); - calendarDatePickerCustomizationDemo.Documentation.AddRange(calendarDatePickerCustomizationDemoDocumentations); - - var calendarDatePicker = new ControlInfo() - { - Control = DemoControl.SfCalendarDatePicker, - ControlBadge = ControlBadge.None, - ControlCategory = ControlCategory.Calendars, - Description = "The Calendar DatePicker is a drop-down control that is optimized for picking a single date from a Calendar control.", - Glyph = "\uE711", - ImageSource= "CalendarDatePicker.png" - }; - calendarDatePicker.Demos.Add(calendarDatePickerDemo); - calendarDatePicker.Demos.Add(calendarDatePickerCustomizationDemo); - - DemoInfo calendarDateRangePickerDemo = new DemoInfo() - { - Name = "Getting Started", - Category = "Calendar DateRange Picker", - DemoType = DemoTypes.None, - Description = "The Calendar DateRangePicker allows users to select a range of dates.", - DemoView = typeof(Views.CalendarDateRangePicker.CalendarDateRangePickerView), - ShowInfoPanel = true - }; - List calendarDateRangePickerDemoDocumentations = new List(); - calendarDateRangePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDateRangePicker - API Reference", Uri = new Uri("https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Calendar.SfCalendarDateRangePicker.html") }); - calendarDateRangePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDateRangePicker - Getting Started", Uri = new Uri("https://help.syncfusion.com/winui/calendar-daterange-picker/getting-started") }); - calendarDateRangePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDateRangePicker - View Navigation", Uri = new Uri("https://help.syncfusion.com/winui/calendar-daterange-picker/navigation") }); - calendarDateRangePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDateRangePicker - Calendar Types", Uri = new Uri("https://help.syncfusion.com/winui/calendar-daterange-picker/localization-and-formatting#types-of-calendar") }); - calendarDateRangePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDateRangePicker - Date Formatting", Uri = new Uri("https://help.syncfusion.com/winui/calendar-daterange-picker/localization-and-formatting#change-calendar-display-format") }); - calendarDateRangePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDateRangePicker - Preset Items", Uri = new Uri("https://help.syncfusion.com/winui/calendar-daterange-picker/show-preset-items") }); - calendarDateRangePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDateRangePicker - Block All Weekends", Uri = new Uri("https://help.syncfusion.com/winui/calendar-daterange-picker/restrict-daterange-selection#disable-dates-dynamically-all-weekend-days") }); - calendarDateRangePickerDemoDocumentations.Add(new Documentation() { Content = "CalendarDateRangePicker - Block Specific Dates", Uri = new Uri("https://help.syncfusion.com/winui/calendar-daterange-picker/restrict-daterange-selection#disable-dates-using-blackoutdates") }); - calendarDateRangePickerDemo.Documentation.AddRange(calendarDatePickerDemoDocumentations); - - DemoInfo calendarDateRangePickerCustomizationDemo = new DemoInfo() - { - Name = "Styles and Templates", - Category = "Calendar DateRange Picker", - DemoType = DemoTypes.None, - Description = "Customization of styles and templates of the Calendar DateRange Picker.", - DemoView = typeof(Views.CalendarDateRangePicker.Customization), - ShowInfoPanel = true - }; - List calendarDateRangePickerCustomizationDemoDocumentations = new List(); - calendarDateRangePickerCustomizationDemoDocumentations.Add(new Documentation() { Content = "CalendarDateRangePicker - API Reference", Uri = new Uri("https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Calendar.SfCalendarDateRangePicker.html") }); - calendarDateRangePickerCustomizationDemoDocumentations.Add(new Documentation() { Content = "CalendarDateRangePicker - Getting Started", Uri = new Uri("https://help.syncfusion.com/winui/calendar-daterange-picker/getting-started") }); - calendarDateRangePickerCustomizationDemoDocumentations.Add(new Documentation() { Content = "CalendarDateRangePicker - Specific Cell's Custom UI", Uri = new Uri("https://help.syncfusion.com/winui/calendar-daterange-picker/calendar-ui-customization#customize-individual-items-in-calendar") }); - calendarDateRangePickerCustomizationDemo.Documentation.AddRange(calendarDatePickerCustomizationDemoDocumentations); - - - var calendarDateRangePicker = new ControlInfo() - { - Control = DemoControl.SfCalendarDateRangePicker, - ControlBadge = ControlBadge.None, - ControlCategory = ControlCategory.Calendars, - Description = "The Calendar DateRangePicker is a drop-down control optimized for selecting a range of dates from a calendar control.", - Glyph = "\uE713", - ImageSource= "CalendarDateRangePicker.png" - }; - calendarDateRangePicker.Demos.Add(calendarDateRangePickerDemo); - calendarDateRangePicker.Demos.Add(calendarDateRangePickerCustomizationDemo); - - var controlInfos = new List() - { - calendar, - calendarDatePicker, - calendarDateRangePicker - }; - - DemoHelper.ControlInfos.AddRange(controlInfos); - } - } -} diff --git a/calendar/Syncfusion.CalendarDemos.WinUI_Net60.csproj b/calendar/Syncfusion.CalendarDemos.WinUI_Net60.csproj deleted file mode 100644 index e7f846ba..00000000 --- a/calendar/Syncfusion.CalendarDemos.WinUI_Net60.csproj +++ /dev/null @@ -1,188 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net6.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.CalendarDemos.WinUI - Syncfusion.CalendarDemos.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64 - true - Properties\PublishProfiles\win10-$(Platform).pubxml - CA1416 - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE; - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE; - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE; - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE; - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - - - - - - - - - - - - - - - - - App.xaml - - - - - - - CalendarDatePickerView.xaml - - - MainWindow.xaml - - - Customization.xaml - - - CalendarDateRangePickerView.xaml - - - Customization.xaml - - - CalendarView.xaml - - - StylesAndTemplates.xaml - - - Customization.xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - MSBuild:Compile - Designer - - - Designer - MSBuild:Compile - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - - - - - - - diff --git a/calendar/Syncfusion.CalendarDemos.WinUI_Net60.sln b/calendar/Syncfusion.CalendarDemos.WinUI_Net60.sln deleted file mode 100644 index 05ec8079..00000000 --- a/calendar/Syncfusion.CalendarDemos.WinUI_Net60.sln +++ /dev/null @@ -1,45 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.2.32210.308 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.CalendarDemos.WinUI_Net60", "Syncfusion.CalendarDemos.WinUI_Net60.csproj", "{1FE280A9-39A3-445F-A5A6-761081E30991}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.DemosCommon.WinUI_lib_Net60", "..\common\Syncfusion.DemosCommon.WinUI_lib_Net60.csproj", "{453F5862-BF8C-4F7D-BFC6-7DC247FD1339}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x64.ActiveCfg = Debug|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x64.Build.0 = Debug|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x64.Deploy.0 = Debug|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x86.ActiveCfg = Debug|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x86.Build.0 = Debug|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x86.Deploy.0 = Debug|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x64.ActiveCfg = Release|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x64.Build.0 = Release|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x64.Deploy.0 = Release|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x86.ActiveCfg = Release|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x86.Build.0 = Release|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x86.Deploy.0 = Release|x86 - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x64.ActiveCfg = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x64.Build.0 = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x86.ActiveCfg = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x86.Build.0 = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x64.ActiveCfg = Release|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x64.Build.0 = Release|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x86.ActiveCfg = Release|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {5C053C8B-907D-43A1-A8E7-B642A12A3660} - EndGlobalSection -EndGlobal diff --git a/calendar/Syncfusion.CalendarDemos.WinUI_Net70.csproj b/calendar/Syncfusion.CalendarDemos.WinUI_Net70.csproj deleted file mode 100644 index 8ff6e7c3..00000000 --- a/calendar/Syncfusion.CalendarDemos.WinUI_Net70.csproj +++ /dev/null @@ -1,188 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net7.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.CalendarDemos.WinUI - Syncfusion.CalendarDemos.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64 - true - Properties\PublishProfiles\win10-$(Platform).pubxml - CA1416 - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE; - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE; - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE; - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE; - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - - - - - - - - - - - - - - - - - App.xaml - - - - - - - CalendarDatePickerView.xaml - - - MainWindow.xaml - - - Customization.xaml - - - CalendarDateRangePickerView.xaml - - - Customization.xaml - - - CalendarView.xaml - - - StylesAndTemplates.xaml - - - Customization.xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - MSBuild:Compile - Designer - - - Designer - MSBuild:Compile - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - - - - - - - diff --git a/calendar/Syncfusion.CalendarDemos.WinUI_Net70.sln b/calendar/Syncfusion.CalendarDemos.WinUI_Net70.sln deleted file mode 100644 index b237bd09..00000000 --- a/calendar/Syncfusion.CalendarDemos.WinUI_Net70.sln +++ /dev/null @@ -1,45 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.2.32210.308 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.CalendarDemos.WinUI_Net70", "Syncfusion.CalendarDemos.WinUI_Net70.csproj", "{1FE280A9-39A3-445F-A5A6-761081E30991}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.DemosCommon.WinUI_lib_Net70", "..\common\Syncfusion.DemosCommon.WinUI_lib_Net70.csproj", "{453F5862-BF8C-4F7D-BFC6-7DC247FD1339}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x64.ActiveCfg = Debug|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x64.Build.0 = Debug|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x64.Deploy.0 = Debug|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x86.ActiveCfg = Debug|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x86.Build.0 = Debug|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x86.Deploy.0 = Debug|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x64.ActiveCfg = Release|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x64.Build.0 = Release|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x64.Deploy.0 = Release|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x86.ActiveCfg = Release|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x86.Build.0 = Release|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x86.Deploy.0 = Release|x86 - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x64.ActiveCfg = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x64.Build.0 = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x86.ActiveCfg = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x86.Build.0 = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x64.ActiveCfg = Release|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x64.Build.0 = Release|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x86.ActiveCfg = Release|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {5C053C8B-907D-43A1-A8E7-B642A12A3660} - EndGlobalSection -EndGlobal diff --git a/calendar/Syncfusion.CalendarDemos.WinUI_Net80.csproj b/calendar/Syncfusion.CalendarDemos.WinUI_Net80.csproj deleted file mode 100644 index e3b21f87..00000000 --- a/calendar/Syncfusion.CalendarDemos.WinUI_Net80.csproj +++ /dev/null @@ -1,189 +0,0 @@ - - - - WinExe - false - false - false - 10.0.19041.0 - net8.0-windows10.0.19041.0 - 10.0.17763.0 - Syncfusion.CalendarDemos.WinUI - Syncfusion.CalendarDemos.WinUI - app.manifest - AnyCPU;x86;x64 - win-x86;win-x64 - true - Properties\PublishProfiles\win10-$(Platform).pubxml - CA1416 - true - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE; - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE; - true - pdbonly - x86 - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE; - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE; - true - pdbonly - x64 - false - prompt - true - true - - - - - - - - - - - - - - - - - - - - - - - - - App.xaml - - - - - - - CalendarDatePickerView.xaml - - - MainWindow.xaml - - - Customization.xaml - - - CalendarDateRangePickerView.xaml - - - Customization.xaml - - - CalendarView.xaml - - - StylesAndTemplates.xaml - - - Customization.xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - MSBuild:Compile - Designer - - - Designer - MSBuild:Compile - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - - - - - - - diff --git a/calendar/Syncfusion.CalendarDemos.WinUI_Net80.sln b/calendar/Syncfusion.CalendarDemos.WinUI_Net80.sln deleted file mode 100644 index 9a9ca119..00000000 --- a/calendar/Syncfusion.CalendarDemos.WinUI_Net80.sln +++ /dev/null @@ -1,45 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.8.226.21692 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.CalendarDemos.WinUI_Net80", "Syncfusion.CalendarDemos.WinUI_Net80.csproj", "{1FE280A9-39A3-445F-A5A6-761081E30991}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.DemosCommon.WinUI_lib_Net80", "..\common\Syncfusion.DemosCommon.WinUI_lib_Net80.csproj", "{453F5862-BF8C-4F7D-BFC6-7DC247FD1339}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x64.ActiveCfg = Debug|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x64.Build.0 = Debug|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x64.Deploy.0 = Debug|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x86.ActiveCfg = Debug|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x86.Build.0 = Debug|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Debug|x86.Deploy.0 = Debug|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x64.ActiveCfg = Release|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x64.Build.0 = Release|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x64.Deploy.0 = Release|x64 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x86.ActiveCfg = Release|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x86.Build.0 = Release|x86 - {1FE280A9-39A3-445F-A5A6-761081E30991}.Release|x86.Deploy.0 = Release|x86 - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x64.ActiveCfg = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x64.Build.0 = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x86.ActiveCfg = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Debug|x86.Build.0 = Debug|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x64.ActiveCfg = Release|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x64.Build.0 = Release|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x86.ActiveCfg = Release|Any CPU - {453F5862-BF8C-4F7D-BFC6-7DC247FD1339}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {5C053C8B-907D-43A1-A8E7-B642A12A3660} - EndGlobalSection -EndGlobal diff --git a/calendar/ViewModel/CalendarViewModel.cs b/calendar/ViewModel/CalendarViewModel.cs deleted file mode 100644 index e99d4ffe..00000000 --- a/calendar/ViewModel/CalendarViewModel.cs +++ /dev/null @@ -1,466 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Microsoft.UI.Xaml.Controls; -using Syncfusion.UI.Xaml.Calendar; -using Syncfusion.UI.Xaml.Core; -using Syncfusion.UI.Xaml.Editors; -using System; -using System.Collections.Generic; -using System.Collections.ObjectModel; - -namespace Syncfusion.CalendarDemos.WinUI -{ - public class CalendarViewModel : NotificationObject - { - private DateTimeOffset minDate = new DateTimeOffset(1921, 1, 1, DateTimeOffset.Now.Hour, DateTimeOffset.Now.Minute, DateTimeOffset.Now.Second, DateTimeOffset.Now.Offset); - private DateTimeOffset maxDate = new DateTimeOffset(2121, 12, 31, DateTimeOffset.Now.Hour, DateTimeOffset.Now.Minute, DateTimeOffset.Now.Second, DateTimeOffset.Now.Offset); - private DateTimeOffset? selectedDate = DateTimeOffset.Now; - private DateTimeOffsetCollection blackoutDates = new DateTimeOffsetCollection(); - private DateTimeOffsetCollection blackoutSpecificDates = new DateTimeOffsetCollection(); - private CalendarDisplayMode minDisplayMode = CalendarDisplayMode.Month; - private CalendarDisplayMode maxDisplayMode = CalendarDisplayMode.Century; - private DateTimeOffset minimumDate = new DateTimeOffset(1601, 1, 1, 6, 0, 0, new TimeSpan(0)); - private DateTimeOffset maximumDate = DateTimeOffset.MaxValue; - private DateTimeOffsetRange selectedRange; - private DateTimeOffsetRange selectionRange; - - public DateTimeOffsetRange SelectedRange - { - get - { - return selectedRange; - } - set - { - selectedRange = value; - this.RaisePropertyChanged(nameof(this.SelectedRange)); - } - } - public DateTimeOffsetRange SelectionRange - { - get - { - return selectionRange; - } - set - { - selectionRange = value; - this.RaisePropertyChanged(nameof(this.SelectionRange)); - } - } - - public CalendarDisplayMode MinDisplayMode - { - get { return minDisplayMode; } - set - { - if (value != minDisplayMode) - { - minDisplayMode = value; - if (maxDisplayMode < minDisplayMode) - { - MaxDisplayMode = minDisplayMode; - } - RaisePropertyChanged(nameof(MinDisplayMode)); - } - } - } - - public CalendarDisplayMode MaxDisplayMode - { - get { return maxDisplayMode; } - set - { - if (value != maxDisplayMode) - { - maxDisplayMode = value; - if (minDisplayMode > maxDisplayMode) - { - MinDisplayMode = maxDisplayMode; - } - RaisePropertyChanged(nameof(MaxDisplayMode)); - } - } - } - - private string dateFormat = "{month.full}"; - - public string DateFormat - { - get { return dateFormat; } - set { dateFormat = value; RaisePropertyChanged(nameof(DateFormat)); } - } - - private bool showSubmit; - - public bool ShowSubmitButtons - { - get { return showSubmit; } - set { showSubmit = value; RaisePropertyChanged(nameof(ShowSubmitButtons)); } - } - - private ulong minDaycount; - - public ulong MinDayCount - { - get { return minDaycount; } - set { minDaycount = value; - RaisePropertyChanged(nameof(MinDayCount)); - } - } - - private ulong? maxDaycount; - - public ulong? MaxDayCount - { - get { return maxDaycount; } - set { maxDaycount = value; RaisePropertyChanged(nameof(MaxDayCount)); } - } - - private ObservableCollection presetCollection; - - public ObservableCollection PresetColection - { - get { return presetCollection; } - set { presetCollection = value; RaisePropertyChanged(nameof(PresetColection)); } - } - - private bool showCalendar = true; - - public bool ShowCalendar - { - get { return showCalendar ; } - set { showCalendar = value; RaisePropertyChanged(nameof(ShowCalendar)); } - } - - public CalendarViewModel() - { - this.UpdateWeekendDates(); - this.AddBlackoutDates(); - - Items = new ObservableCollection(); - Items.Add("JulianCalendar"); - Items.Add("GregorianCalendar"); - Items.Add("HebrewCalendar"); - Items.Add("HijriCalendar"); - Items.Add("KoreanCalendar"); - Items.Add("TaiwanCalendar"); - Items.Add("UmAlQuraCalendar"); - Items.Add("PersianCalendar"); - Items.Add("ThaiCalendar"); - - PresetColection = new ObservableCollection(); - PresetColection.Add("This Week"); - PresetColection.Add("This Month"); - PresetColection.Add("Last Month"); - PresetColection.Add("This Year"); - PresetColection.Add("Custom Range"); - - var lang = new LanguageList(); - Languages = lang.Languages; - } - - public DateTimeOffset MinDate - { - get - { - return minDate; - } - set - { - if (minDate != value) - { - minDate = value; - this.RaisePropertyChanged(nameof(this.MinDate)); - } - } - } - - public DateTimeOffset MaxDate - { - get - { - return maxDate; - } - set - { - if (maxDate != value) - { - maxDate = value; - this.RaisePropertyChanged(nameof(this.MaxDate)); - } - } - } - - public DateTimeOffset? SelectedDate - { - get - { - return selectedDate; - } - set - { - if (selectedDate != value) - { - selectedDate = value; - this.RaisePropertyChanged(nameof(this.SelectedDate)); - } - } - } - - public DateTimeOffsetCollection BlackoutDates - { - get - { - return blackoutDates; - } - set - { - if (blackoutDates != value) - { - blackoutDates = value; - this.RaisePropertyChanged(nameof(this.BlackoutDates)); - } - } - } - - public DateTimeOffsetCollection BlackoutSpecificDates - { - get - { - return blackoutSpecificDates; - } - set - { - if (blackoutSpecificDates != value) - { - blackoutSpecificDates = value; - this.RaisePropertyChanged(nameof(this.BlackoutSpecificDates)); - } - } - } - - public ObservableCollection Items { get; set; } - - public List Languages { get; set; } - - /// - /// Gets or sets the minimum date for CalendarDatePicker contained in options to change Minimum and Maximum date. - /// - public DateTimeOffset MinimumDate - { - get - { - return minimumDate; - } - set - { - if (minimumDate != value) - { - minimumDate = value; - this.RaisePropertyChanged(nameof(this.MinimumDate)); - } - } - } - - /// - /// Gets or sets the maximum date for CalendarDatePicker contained in options to change Minimum and Maximum date. - /// - public DateTimeOffset MaximumDate - { - get - { - return maximumDate; - } - set - { - if (maximumDate != value) - { - maximumDate = value; - this.RaisePropertyChanged(nameof(this.MaximumDate)); - } - } - } - private void AddBlackoutDates() - { - var date = new DateTimeOffset(new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1)); - //BlackoutDates for Previous Month - BlackoutSpecificDates.Add(date.AddDays(-30)); - BlackoutSpecificDates.Add(date.AddDays(-27)); - BlackoutSpecificDates.Add(date.AddDays(-24)); - BlackoutSpecificDates.Add(date.AddDays(-20)); - BlackoutSpecificDates.Add(date.AddDays(-16)); - BlackoutSpecificDates.Add(date.AddDays(-13)); - BlackoutSpecificDates.Add(date.AddDays(-10)); - BlackoutSpecificDates.Add(date.AddDays(-8)); - BlackoutSpecificDates.Add(date.AddDays(-5)); - BlackoutSpecificDates.Add(date.AddDays(-3)); - BlackoutSpecificDates.Add(date.AddDays(-1)); - - //BlackoutDates for Current Month - BlackoutSpecificDates.Add(date); - BlackoutSpecificDates.Add(date.AddDays(4)); - BlackoutSpecificDates.Add(date.AddDays(6)); - BlackoutSpecificDates.Add(date.AddDays(9)); - BlackoutSpecificDates.Add(date.AddDays(11)); - BlackoutSpecificDates.Add(date.AddDays(13)); - BlackoutSpecificDates.Add(date.AddDays(16)); - BlackoutSpecificDates.Add(date.AddDays(17)); - BlackoutSpecificDates.Add(date.AddDays(19)); - BlackoutSpecificDates.Add(date.AddDays(23)); - BlackoutSpecificDates.Add(date.AddDays(27)); - - //BlackoutDates for Next Month - BlackoutSpecificDates.Add(date.AddDays(31)); - BlackoutSpecificDates.Add(date.AddDays(33)); - BlackoutSpecificDates.Add(date.AddDays(36)); - BlackoutSpecificDates.Add(date.AddDays(39)); - BlackoutSpecificDates.Add(date.AddDays(43)); - BlackoutSpecificDates.Add(date.AddDays(47)); - BlackoutSpecificDates.Add(date.AddDays(50)); - BlackoutSpecificDates.Add(date.AddDays(54)); - BlackoutSpecificDates.Add(date.AddDays(58)); - BlackoutSpecificDates.Add(date.AddDays(60)); - } - - private void UpdateWeekendDates() - { - int month = DateTime.Now.Month; - int year = DateTime.Now.Year; - int noOfDays = DateTime.DaysInMonth(year, month); - DateTime dateTime = new DateTime(year, month, 1); - - for (int i = 0; i < noOfDays; i++) - { - DateTime date = dateTime.AddDays(i); - if (date.DayOfWeek == DayOfWeek.Saturday || date.DayOfWeek == DayOfWeek.Sunday) - { - if (this.selectedDate.HasValue && this.SelectedDate.Value.Date != date) - blackoutDates.Add(date); - } - } - } - } - - public class LanguageList - { - private List _languages; - public List Languages - { - get { return _languages; } - } - - public LanguageList() - { - if (_languages == null) - { - _languages = new List(); - } - - _languages.Add(new Language("English", "en")); - _languages.Add(new Language("Arabic", "ar")); - _languages.Add(new Language("Afrikaans", "af")); - _languages.Add(new Language("Albanian", "sq")); - _languages.Add(new Language("Amharic", "am")); - _languages.Add(new Language("Armenian", "hy")); - _languages.Add(new Language("Assamese", "as")); - _languages.Add(new Language("Azerbaijani", "az")); - _languages.Add(new Language("Basque ", "eu")); - _languages.Add(new Language("Belarusian", "be")); - _languages.Add(new Language("Bangla", "bn")); - _languages.Add(new Language("Bosnian", "bs")); - _languages.Add(new Language("Bulgarian", "bg")); - _languages.Add(new Language("Catalan", "ca")); - _languages.Add(new Language("Chinese (Simplified)", "zh")); - _languages.Add(new Language("Croatian", "hr")); - _languages.Add(new Language("Czech", "cs")); - _languages.Add(new Language("Danish", "da")); - _languages.Add(new Language("Dari", "prs")); - _languages.Add(new Language("Dutch", "nl")); - _languages.Add(new Language("Estonian", "et")); - _languages.Add(new Language("Filipino", "fil")); - _languages.Add(new Language("Finnish", "fi")); - _languages.Add(new Language("French ", "fr")); - _languages.Add(new Language("Galician", "gl")); - _languages.Add(new Language("Georgian", "ka")); - _languages.Add(new Language("German", "de")); - _languages.Add(new Language("Greek", "el")); - _languages.Add(new Language("Gujarati", "gu")); - _languages.Add(new Language("Hausa", "ha")); - _languages.Add(new Language("Hebrew", "he")); - _languages.Add(new Language("Hindi", "hi")); - _languages.Add(new Language("Hungarian", "hu")); - _languages.Add(new Language("Icelandic", "is")); - _languages.Add(new Language("Indonesian", "id")); - _languages.Add(new Language("Irish", "ga")); - _languages.Add(new Language("isiXhosa", "xh")); - _languages.Add(new Language("isiZulu", "zu")); - _languages.Add(new Language("Italian", "it")); - _languages.Add(new Language("Japanese ", "ja")); - _languages.Add(new Language("Kannada", "kn")); - _languages.Add(new Language("Kazakh", "kk")); - _languages.Add(new Language("Khmer", "km")); - _languages.Add(new Language("Kinyarwanda", "rw")); - _languages.Add(new Language("KiSwahili", "sw")); - _languages.Add(new Language("Konkani", "kok")); - _languages.Add(new Language("Korean", "ko")); - _languages.Add(new Language("Lao", "lo")); - _languages.Add(new Language("Latvian", "lv")); - _languages.Add(new Language("Lithuanian", "lt")); - _languages.Add(new Language("Luxembourgish", "lb")); - _languages.Add(new Language("Macedonian", "mk")); - _languages.Add(new Language("Malay", "ms")); - _languages.Add(new Language("Malayalam", "ml")); - _languages.Add(new Language("Maltese", "mt")); - _languages.Add(new Language("Maori ", "mi")); - _languages.Add(new Language("Marathi", "mr")); - _languages.Add(new Language("Nepali", "ne")); - _languages.Add(new Language("Norwegian", "nb")); - _languages.Add(new Language("Odia", "or")); - _languages.Add(new Language("Persian", "fa")); - _languages.Add(new Language("Polish", "pl")); - _languages.Add(new Language("Portuguese", "pt")); - _languages.Add(new Language("Punjabi", "pa")); - _languages.Add(new Language("Quechua", "quz")); - _languages.Add(new Language("Romanian", "ro")); - _languages.Add(new Language("Russian", "ru")); - _languages.Add(new Language("Serbian (Latin)", "sr")); - _languages.Add(new Language("Sesotho sa Leboa", "nso")); - _languages.Add(new Language("Setswana", "tn")); - _languages.Add(new Language("Sinhala", "si")); - _languages.Add(new Language("Slovak ", "sk")); - _languages.Add(new Language("Slovenian", "sl")); - _languages.Add(new Language("Spanish", "es")); - _languages.Add(new Language("Swedish", "sv")); - _languages.Add(new Language("Tamil", "ta")); - _languages.Add(new Language("Telugu", "te")); - _languages.Add(new Language("Thai", "th")); - _languages.Add(new Language("Tigrinya", "ti")); - _languages.Add(new Language("Turkish", "tr")); - _languages.Add(new Language("Ukrainian", "uk")); - _languages.Add(new Language("Urdu", "ur")); - _languages.Add(new Language("Uzbek (Latin)", "uz")); - _languages.Add(new Language("Vietnamese", "vi")); - _languages.Add(new Language("Welsh", "cy")); - _languages.Add(new Language("Wolof", "wo")); - - } - - public class Language - { - public string Name { get; set; } - public string Code { get; set; } - - public Language(string name, string code) - { - this.Name = name; - this.Code = code; - } - } - } -} diff --git a/calendar/Views/Calendar/CalendarView.xaml b/calendar/Views/Calendar/CalendarView.xaml deleted file mode 100644 index 45ad7ec8..00000000 --- a/calendar/Views/Calendar/CalendarView.xaml +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/calendar/Views/Calendar/CalendarView.xaml.cs b/calendar/Views/Calendar/CalendarView.xaml.cs deleted file mode 100644 index 5ed0a80f..00000000 --- a/calendar/Views/Calendar/CalendarView.xaml.cs +++ /dev/null @@ -1,75 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System; -using Microsoft.UI.Xaml.Controls; - -// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238 - -namespace Syncfusion.CalendarDemos.WinUI.Views.Calendar -{ - /// - /// An empty page that can be used on its own or navigated to within a Frame. - /// - public sealed partial class CalendarView : Page, IDisposable - { - public CalendarView() - { - this.InitializeComponent(); - this.calendarViewPanel.PointerPressed += OnCalendarViewPanelPointerPressed; - } - - private void OnCalendarViewPanelPointerPressed(object sender, Microsoft.UI.Xaml.Input.PointerRoutedEventArgs e) - { - // To restrict the focus on first control when clicking on empty area. - e.Handled = true; - } - - private void languages_SelectionChanged(object sender, SelectionChangedEventArgs e) - { - string selectedLang = languages.SelectedValue.ToString(); - if (Windows.Globalization.Language.IsWellFormed(selectedLang)) - { - calendar3.Language = selectedLang; - } - } - - public void Dispose() - { - this.calendarViewPanel.PointerPressed -= OnCalendarViewPanelPointerPressed; - if (this.calendar1 != null) - { - this.calendar1.Dispose(); - this.calendar1 = null; - } - - if (this.calendar2 != null) - { - this.calendar2.Dispose(); - this.calendar2 = null; - } - - if (this.calendar3 != null) - { - this.calendar3.Dispose(); - this.calendar3 = null; - } - - if (this.optionDatePicker1 != null) - { - this.optionDatePicker1.Dispose(); - this.optionDatePicker1 = null; - } - - if (this.optionDatePicker2 != null) - { - this.optionDatePicker2.Dispose(); - this.optionDatePicker2 = null; - } - } - } -} diff --git a/calendar/Views/Calendar/Customization.xaml b/calendar/Views/Calendar/Customization.xaml deleted file mode 100644 index 092c07bb..00000000 --- a/calendar/Views/Calendar/Customization.xaml +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - - - - - - - - - - - - - Abbreviated - Full - - - Abbreviated - Full - Number - - - Abbreviated - 2 char - Abbreviated - 3 char - - - Full - Abbreviated - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/calendar/Views/Calendar/Customization.xaml.cs b/calendar/Views/Calendar/Customization.xaml.cs deleted file mode 100644 index dbc79387..00000000 --- a/calendar/Views/Calendar/Customization.xaml.cs +++ /dev/null @@ -1,71 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System; -using Microsoft.UI.Xaml.Controls; -using Syncfusion.UI.Xaml.Calendar; - -// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238 - -namespace Syncfusion.CalendarDemos.WinUI.Views.Calendar -{ - /// - /// An empty page that can be used on its own or navigated to within a Frame. - /// - public sealed partial class Customization : Page, IDisposable - { - public Customization() - { - this.InitializeComponent(); - this.customizationViewPanel.PointerPressed += OnCustomizationViewPanelPointerPressed; - } - - private void OnCustomizationViewPanelPointerPressed(object sender, Microsoft.UI.Xaml.Input.PointerRoutedEventArgs e) - { - // To restrict the focus on first control when clicking on empty area. - e.Handled = true; - } - - private void Blackout_ItemPrepared(object sender, CalendarItemPreparedEventArgs e) - { - if (e.ItemInfo.ItemType == CalendarItemType.Day && - (e.ItemInfo.Date.DayOfWeek == DayOfWeek.Saturday || - e.ItemInfo.Date.DayOfWeek == DayOfWeek.Sunday)) - { - e.ItemInfo.IsBlackout = true; - } - } - - public void Dispose() - { - this.customizationViewPanel.PointerPressed -= OnCustomizationViewPanelPointerPressed; - if (this.calendar4 != null) - { - this.calendar4.Dispose(); - this.calendar4 = null; - } - - if (this.calendar5 != null) - { - this.calendar5.Dispose(); - this.calendar5 = null; - } - - if (this.calendar6 != null) - { - this.calendar6.Dispose(); - this.calendar6 = null; - } - - if (this.weekNumber != null) - { - this.weekNumber.Dispose(); - this.weekNumber = null; - } - } - } -} diff --git a/calendar/Views/Calendar/Resources/CustomCalendarItemTemplateSelector.cs b/calendar/Views/Calendar/Resources/CustomCalendarItemTemplateSelector.cs deleted file mode 100644 index 75255cdc..00000000 --- a/calendar/Views/Calendar/Resources/CustomCalendarItemTemplateSelector.cs +++ /dev/null @@ -1,88 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Controls; -using Syncfusion.UI.Xaml.Calendar; -using System; -using System.Collections.Generic; -using System.Linq; - -namespace Syncfusion.CalendarDemos.WinUI -{ - public class CustomCalendarItemTemplateSelector : DataTemplateSelector - { - public CustomCalendarItemTemplateSelector() - { - SpecialDates = new Dictionary(); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(-1).AddDays(1), "SingleEvent_1"); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(-1).AddDays(5), "DoubleEvent_1"); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(-1).AddDays(-2), "TripleEvent_2"); - SpecialDates.Add(DateTimeOffset.Now.AddDays(1), "TripleEvent_1"); - SpecialDates.Add(DateTimeOffset.Now.AddDays(5), "SingleEvent_2"); - SpecialDates.Add(DateTimeOffset.Now.AddDays(7), "DoubleEvent_2"); - SpecialDates.Add(DateTimeOffset.Now.AddDays(9), "SingleEvent_1"); - SpecialDates.Add(DateTimeOffset.Now.AddDays(12), "TripleEvent_2"); - SpecialDates.Add(DateTimeOffset.Now.AddDays(-4), "DoubleEvent_1"); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(1).AddDays(1), "DoubleEvent_3"); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(1).AddDays(3), "SingleEvent_2"); - SpecialDates.Add(DateTimeOffset.Now.AddMonths(1).AddDays(-5), "DoubleEvent_2"); - } - private Dictionary SpecialDates { get; set; } - - public DataTemplate DefaultTemplate { get; set; } - public DataTemplate SingleEventTemplate_1 { get; set; } - public DataTemplate SingleEventTemplate_2 { get; set; } - public DataTemplate DoubleEventTemplate_1 { get; set; } - public DataTemplate DoubleEventTemplate_2 { get; set; } - public DataTemplate DoubleEventTemplate_3 { get; set; } - public DataTemplate TripleEventTemplate_1 { get; set; } - public DataTemplate TripleEventTemplate_2 { get; set; } - - protected override DataTemplate SelectTemplateCore(object item, DependencyObject container) - { - if (item != null) - { - var calendarItemInfo = (container as ContentControl).DataContext as CalendarItemInfo; - if (calendarItemInfo != null && calendarItemInfo.ItemType != CalendarItemType.Day) - { - return DefaultTemplate; - } - - DateTimeOffset calendarItem = (DateTimeOffset)item; - DateTimeOffset dateTimeOffset = SpecialDates.Keys.FirstOrDefault(x => x.Date == calendarItem.Date); - - if (dateTimeOffset != DateTimeOffset.MinValue) - { - string template = this.SpecialDates[dateTimeOffset]; - - switch (template) - { - case "SingleEvent_1": - return SingleEventTemplate_1; - case "SingleEvent_2": - return SingleEventTemplate_2; - case "DoubleEvent_1": - return DoubleEventTemplate_1; - case "DoubleEvent_2": - return DoubleEventTemplate_2; - case "DoubleEvent_3": - return DoubleEventTemplate_3; - case "TripleEvent_1": - return TripleEventTemplate_1; - case "TripleEvent_2": - return TripleEventTemplate_2; - } - } - - return DefaultTemplate; - } - - return base.SelectTemplateCore(item, container); - } - } -} diff --git a/calendar/Views/Calendar/StylesAndTemplates.xaml b/calendar/Views/Calendar/StylesAndTemplates.xaml deleted file mode 100644 index 2472eb99..00000000 --- a/calendar/Views/Calendar/StylesAndTemplates.xaml +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 16 - 1 - 13 - - - - - - - - - - - - - - - - - - - - - - - - 1 - 16 - 13 - SimSun - - - - - - - - - - - diff --git a/calendar/Views/Calendar/StylesAndTemplates.xaml.cs b/calendar/Views/Calendar/StylesAndTemplates.xaml.cs deleted file mode 100644 index 10e5100e..00000000 --- a/calendar/Views/Calendar/StylesAndTemplates.xaml.cs +++ /dev/null @@ -1,48 +0,0 @@ -#region Copyright Syncfusion Inc. 2001-2024. -// Copyright Syncfusion Inc. 2001-2024. All rights reserved. -// Use of this code is subject to the terms of our license. -// A copy of the current license can be obtained at any time by e-mailing -// licensing@syncfusion.com. Any infringement will be prosecuted under -// applicable laws. -#endregion -using System; -using Microsoft.UI.Xaml.Controls; - -// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238 - -namespace Syncfusion.CalendarDemos.WinUI.Views.Calendar -{ - /// - /// An empty page that can be used on its own or navigated to within a Frame. - /// - public sealed partial class StylesAndTemplates : Page, IDisposable - { - public StylesAndTemplates() - { - this.InitializeComponent(); - this.styleAndTemplatesViewPanel.PointerPressed += OnStyleAndTemplatesViewPanelPointerPressed; - } - - private void OnStyleAndTemplatesViewPanelPointerPressed(object sender, Microsoft.UI.Xaml.Input.PointerRoutedEventArgs e) - { - // To restrict the focus on first control when clicking on empty area. - e.Handled = true; - } - - public void Dispose() - { - this.styleAndTemplatesViewPanel.PointerPressed -= OnStyleAndTemplatesViewPanelPointerPressed; - if (this.calendar7 != null) - { - this.calendar7.Dispose(); - this.calendar7 = null; - } - - if (this.calendar8 != null) - { - this.calendar8.Dispose(); - this.calendar8 = null; - } - } - } -} diff --git a/calendar/Views/CalendarDatePicker/CalendarDatePickerView.xaml b/calendar/Views/CalendarDatePicker/CalendarDatePickerView.xaml deleted file mode 100644 index 30ebfbd2..00000000 --- a/calendar/Views/CalendarDatePicker/CalendarDatePickerView.xaml +++ /dev/null @@ -1,458 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - d - D - f - F - g - G - s - - - Abbreviated - Full - - - Abbreviated - Full - Number - - - Abbreviated - 2 char - Abbreviated - 3 char - - - Full - Abbreviated - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -