Browse Source

Added headers.

pull/2603/head
Steven Kirk 7 years ago
parent
commit
e8a118e11c
  1. 7
      src/Avalonia.Controls/Repeaters/ElementManager.cs
  2. 7
      src/Avalonia.Controls/Repeaters/FlowLayoutAlgorithm.cs
  3. 7
      src/Avalonia.Controls/Repeaters/IFlowLayoutAlgorithmDelegates.cs
  4. 7
      src/Avalonia.Controls/Repeaters/ItemTemplateWrapper.cs
  5. 7
      src/Avalonia.Controls/Repeaters/ItemsRepeater.cs
  6. 7
      src/Avalonia.Controls/Repeaters/ItemsRepeaterElementClearingEventArgs.cs
  7. 7
      src/Avalonia.Controls/Repeaters/ItemsRepeaterElementIndexChangedEventArgs.cs
  8. 7
      src/Avalonia.Controls/Repeaters/ItemsRepeaterElementPreparedEventArgs.cs
  9. 7
      src/Avalonia.Controls/Repeaters/ItemsSourceView.cs
  10. 7
      src/Avalonia.Controls/Repeaters/Layout.cs
  11. 7
      src/Avalonia.Controls/Repeaters/LayoutContext.cs
  12. 7
      src/Avalonia.Controls/Repeaters/NonVirtualizingLayout.cs
  13. 7
      src/Avalonia.Controls/Repeaters/OrientationBasedMeasures.cs
  14. 7
      src/Avalonia.Controls/Repeaters/RecyclePool.cs
  15. 7
      src/Avalonia.Controls/Repeaters/RepeaterLayoutContext.cs
  16. 7
      src/Avalonia.Controls/Repeaters/StackLayout.cs
  17. 7
      src/Avalonia.Controls/Repeaters/StackLayoutState.cs
  18. 7
      src/Avalonia.Controls/Repeaters/UniformGridLayout.cs
  19. 7
      src/Avalonia.Controls/Repeaters/UniformGridLayoutState.cs
  20. 7
      src/Avalonia.Controls/Repeaters/UniqueIdElementPool.cs
  21. 7
      src/Avalonia.Controls/Repeaters/ViewManager.cs
  22. 7
      src/Avalonia.Controls/Repeaters/ViewportManager.cs
  23. 7
      src/Avalonia.Controls/Repeaters/VirtualizationInfo.cs
  24. 7
      src/Avalonia.Controls/Repeaters/VirtualizingLayout.cs

7
src/Avalonia.Controls/Repeaters/ElementManager.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;

7
src/Avalonia.Controls/Repeaters/FlowLayoutAlgorithm.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Specialized;
namespace Avalonia.Controls.Repeaters

7
src/Avalonia.Controls/Repeaters/IFlowLayoutAlgorithmDelegates.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Text;

7
src/Avalonia.Controls/Repeaters/ItemTemplateWrapper.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Text;
using Avalonia.Controls.Templates;

7
src/Avalonia.Controls/Repeaters/ItemsRepeater.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections;
using System.Collections.Specialized;
using Avalonia.Controls.Templates;

7
src/Avalonia.Controls/Repeaters/ItemsRepeaterElementClearingEventArgs.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
namespace Avalonia.Controls.Repeaters
{

7
src/Avalonia.Controls/Repeaters/ItemsRepeaterElementIndexChangedEventArgs.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
namespace Avalonia.Controls.Repeaters
{

7
src/Avalonia.Controls/Repeaters/ItemsRepeaterElementPreparedEventArgs.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Text;

7
src/Avalonia.Controls/Repeaters/ItemsSourceView.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;

7
src/Avalonia.Controls/Repeaters/Layout.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
namespace Avalonia.Controls.Repeaters
{

7
src/Avalonia.Controls/Repeaters/LayoutContext.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Text;

7
src/Avalonia.Controls/Repeaters/NonVirtualizingLayout.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Text;

7
src/Avalonia.Controls/Repeaters/OrientationBasedMeasures.cs

@ -1,4 +1,9 @@
namespace Avalonia.Controls.Repeaters
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
namespace Avalonia.Controls.Repeaters
{
internal class OrientationBasedMeasures
{

7
src/Avalonia.Controls/Repeaters/RecyclePool.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;

7
src/Avalonia.Controls/Repeaters/RepeaterLayoutContext.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Text;

7
src/Avalonia.Controls/Repeaters/StackLayout.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Specialized;
namespace Avalonia.Controls.Repeaters

7
src/Avalonia.Controls/Repeaters/StackLayoutState.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Linq;

7
src/Avalonia.Controls/Repeaters/UniformGridLayout.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Specialized;
namespace Avalonia.Controls.Repeaters

7
src/Avalonia.Controls/Repeaters/UniformGridLayoutState.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;

7
src/Avalonia.Controls/Repeaters/UniqueIdElementPool.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;

7
src/Avalonia.Controls/Repeaters/ViewManager.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using Avalonia.Controls.Templates;

7
src/Avalonia.Controls/Repeaters/ViewportManager.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Reactive.Linq;
using System.Threading.Tasks;

7
src/Avalonia.Controls/Repeaters/VirtualizationInfo.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
namespace Avalonia.Controls.Repeaters
{

7
src/Avalonia.Controls/Repeaters/VirtualizingLayout.cs

@ -1,4 +1,9 @@
using System;
// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;

Loading…
Cancel
Save