From 4ebdd4414c5cf43a86402592ac1935340cfd7b90 Mon Sep 17 00:00:00 2001 From: Mahdi Hosseini Date: Sat, 7 Dec 2024 15:58:57 +0330 Subject: [PATCH] #11 --- ThirdPartyNotices.txt | 100 +++++++++++++++++- .../CheckBoxWithDescriptionControl.cs | 5 +- .../FlyoutMenuButton/FlyoutMenuButton.cs | 6 +- .../Controls/KeyVisual/KeyVisual.cs | 5 +- .../OOBEPageControl/OOBEPageControl.xaml.cs | 5 +- .../Controls/Ported/CopyButton/CopyButton.cs | 5 +- .../SettingsGroupAutomationPeer.cs | 5 +- .../SimpleSettingsGroup.cs | 5 +- .../Controls/SettingsPageControl/PageLink.cs | 5 +- .../SettingsPageControl.xaml.cs | 5 +- .../ShortcutDialogContentControl.xaml.cs | 5 +- .../ShortcutWithTextLabelControl.xaml.cs | 5 +- 12 files changed, 143 insertions(+), 13 deletions(-) diff --git a/ThirdPartyNotices.txt b/ThirdPartyNotices.txt index c07ff14..cfc3e3d 100644 --- a/ThirdPartyNotices.txt +++ b/ThirdPartyNotices.txt @@ -1,4 +1,52 @@ -This project includes third-party software components. Below is a list of those components along with their respective licenses and copyright information. +This project includes third-party software components. Below is a list of those components along with their respective licenses and copyright information. + +Powertoys +Repository: https://github.com/microsoft/Powertoys +License: MIT License +Copyright (c) Microsoft Corporation and Contributors + +MIT License: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +WinUI-Gallery +Repository: https://github.com/microsoft/WinUI-Gallery +License: MIT License +Copyright (c) Microsoft Corporation and Contributors + +MIT License: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. CommunityToolkit Repository: https://github.com/CommunityToolkit/Windows @@ -22,4 +70,52 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file +SOFTWARE. + +HandyControl and HandyControls +Repository: https://github.com/HandyOrg/HandyControl, https://github.com/ghost1372/HandyControls +License: MIT License +Copyright (c) Microsoft Corporation and Contributors + +MIT License: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +AK.Toolkit (Only AutoCompleteTextBox) +Repository: https://github.com/AndrewKeepCoding/AK.Toolkit +License: MIT License +Copyright (c) Microsoft Corporation and Contributors + +MIT License: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/dev/DevWinUI.Controls/Controls/CheckBoxWithDescriptionControl.cs b/dev/DevWinUI.Controls/Controls/CheckBoxWithDescriptionControl.cs index ff2f0d2..3afcbbc 100644 --- a/dev/DevWinUI.Controls/Controls/CheckBoxWithDescriptionControl.cs +++ b/dev/DevWinUI.Controls/Controls/CheckBoxWithDescriptionControl.cs @@ -1,4 +1,7 @@ -using System.ComponentModel; +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +using System.ComponentModel; using Microsoft.UI.Xaml.Automation; namespace DevWinUI; diff --git a/dev/DevWinUI.Controls/Controls/FlyoutMenuButton/FlyoutMenuButton.cs b/dev/DevWinUI.Controls/Controls/FlyoutMenuButton/FlyoutMenuButton.cs index 3d1b6db..c946152 100644 --- a/dev/DevWinUI.Controls/Controls/FlyoutMenuButton/FlyoutMenuButton.cs +++ b/dev/DevWinUI.Controls/Controls/FlyoutMenuButton/FlyoutMenuButton.cs @@ -1,4 +1,8 @@ -namespace DevWinUI; +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +namespace DevWinUI; public partial class FlyoutMenuButton : Button { /// diff --git a/dev/DevWinUI.Controls/Controls/KeyVisual/KeyVisual.cs b/dev/DevWinUI.Controls/Controls/KeyVisual/KeyVisual.cs index cdd49dd..372e173 100644 --- a/dev/DevWinUI.Controls/Controls/KeyVisual/KeyVisual.cs +++ b/dev/DevWinUI.Controls/Controls/KeyVisual/KeyVisual.cs @@ -1,4 +1,7 @@ -using Microsoft.UI.Xaml.Markup; +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +using Microsoft.UI.Xaml.Markup; using Windows.System; diff --git a/dev/DevWinUI.Controls/Controls/OOBEPageControl/OOBEPageControl.xaml.cs b/dev/DevWinUI.Controls/Controls/OOBEPageControl/OOBEPageControl.xaml.cs index 548ed59..f7a5293 100644 --- a/dev/DevWinUI.Controls/Controls/OOBEPageControl/OOBEPageControl.xaml.cs +++ b/dev/DevWinUI.Controls/Controls/OOBEPageControl/OOBEPageControl.xaml.cs @@ -1,4 +1,7 @@ -namespace DevWinUI; +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +namespace DevWinUI; public sealed partial class OOBEPageControl : UserControl { diff --git a/dev/DevWinUI.Controls/Controls/Ported/CopyButton/CopyButton.cs b/dev/DevWinUI.Controls/Controls/Ported/CopyButton/CopyButton.cs index a8cdea9..5b42300 100644 --- a/dev/DevWinUI.Controls/Controls/Ported/CopyButton/CopyButton.cs +++ b/dev/DevWinUI.Controls/Controls/Ported/CopyButton/CopyButton.cs @@ -1,4 +1,7 @@ -namespace DevWinUI; +// Copyright (c) Microsoft Corporation and Contributors. +// Licensed under the MIT License. + +namespace DevWinUI; public sealed partial class CopyButton : Button { public CopyButton() diff --git a/dev/DevWinUI.Controls/Controls/SettingsGroup/SimpleSettingsGroup/SettingsGroupAutomationPeer.cs b/dev/DevWinUI.Controls/Controls/SettingsGroup/SimpleSettingsGroup/SettingsGroupAutomationPeer.cs index 52abe9c..716d5e2 100644 --- a/dev/DevWinUI.Controls/Controls/SettingsGroup/SimpleSettingsGroup/SettingsGroupAutomationPeer.cs +++ b/dev/DevWinUI.Controls/Controls/SettingsGroup/SimpleSettingsGroup/SettingsGroupAutomationPeer.cs @@ -1,4 +1,7 @@ -using Microsoft.UI.Xaml.Automation.Peers; +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +using Microsoft.UI.Xaml.Automation.Peers; namespace DevWinUI; diff --git a/dev/DevWinUI.Controls/Controls/SettingsGroup/SimpleSettingsGroup/SimpleSettingsGroup.cs b/dev/DevWinUI.Controls/Controls/SettingsGroup/SimpleSettingsGroup/SimpleSettingsGroup.cs index d66f3d8..11f0a13 100644 --- a/dev/DevWinUI.Controls/Controls/SettingsGroup/SimpleSettingsGroup/SimpleSettingsGroup.cs +++ b/dev/DevWinUI.Controls/Controls/SettingsGroup/SimpleSettingsGroup/SimpleSettingsGroup.cs @@ -1,4 +1,7 @@ -using System.ComponentModel; +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +using System.ComponentModel; using Microsoft.UI.Xaml.Automation.Peers; namespace DevWinUI; diff --git a/dev/DevWinUI.Controls/Controls/SettingsPageControl/PageLink.cs b/dev/DevWinUI.Controls/Controls/SettingsPageControl/PageLink.cs index e213d70..1d5d387 100644 --- a/dev/DevWinUI.Controls/Controls/SettingsPageControl/PageLink.cs +++ b/dev/DevWinUI.Controls/Controls/SettingsPageControl/PageLink.cs @@ -1,4 +1,7 @@ -namespace DevWinUI; +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +namespace DevWinUI; public partial class PageLink { diff --git a/dev/DevWinUI.Controls/Controls/SettingsPageControl/SettingsPageControl.xaml.cs b/dev/DevWinUI.Controls/Controls/SettingsPageControl/SettingsPageControl.xaml.cs index 492183e..b4bcd43 100644 --- a/dev/DevWinUI.Controls/Controls/SettingsPageControl/SettingsPageControl.xaml.cs +++ b/dev/DevWinUI.Controls/Controls/SettingsPageControl/SettingsPageControl.xaml.cs @@ -1,4 +1,7 @@ -using System.Collections.ObjectModel; +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +using System.Collections.ObjectModel; namespace DevWinUI; diff --git a/dev/DevWinUI.Controls/Controls/Shortcut/ShortcutDialogContentControl.xaml.cs b/dev/DevWinUI.Controls/Controls/Shortcut/ShortcutDialogContentControl.xaml.cs index d7809fc..8d0c4ec 100644 --- a/dev/DevWinUI.Controls/Controls/Shortcut/ShortcutDialogContentControl.xaml.cs +++ b/dev/DevWinUI.Controls/Controls/Shortcut/ShortcutDialogContentControl.xaml.cs @@ -1,4 +1,7 @@ -namespace DevWinUI; +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +namespace DevWinUI; public sealed partial class ShortcutDialogContentControl : UserControl { diff --git a/dev/DevWinUI.Controls/Controls/Shortcut/ShortcutWithTextLabelControl.xaml.cs b/dev/DevWinUI.Controls/Controls/Shortcut/ShortcutWithTextLabelControl.xaml.cs index 953b017..5f7e162 100644 --- a/dev/DevWinUI.Controls/Controls/Shortcut/ShortcutWithTextLabelControl.xaml.cs +++ b/dev/DevWinUI.Controls/Controls/Shortcut/ShortcutWithTextLabelControl.xaml.cs @@ -1,4 +1,7 @@ -namespace DevWinUI; +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +namespace DevWinUI; public sealed partial class ShortcutWithTextLabelControl : UserControl {