From 6bb7b16f8afc8762a54eda23b83ff8387eb50928 Mon Sep 17 00:00:00 2001 From: David Date: Mon, 28 Sep 2020 10:22:03 -0400 Subject: [PATCH] feat(dragdrop): Add basic sample --- .../UITests.Shared/UITests.Shared.projitems | 7 ++++ .../DragAndDrop/DragDrop_Basics.xaml | 39 +++++++++++++++++++ .../DragAndDrop/DragDrop_Basics.xaml.cs | 16 ++++++++ 3 files changed, 62 insertions(+) create mode 100644 src/SamplesApp/UITests.Shared/Windows_UI_Xaml/DragAndDrop/DragDrop_Basics.xaml create mode 100644 src/SamplesApp/UITests.Shared/Windows_UI_Xaml/DragAndDrop/DragDrop_Basics.xaml.cs diff --git a/src/SamplesApp/UITests.Shared/UITests.Shared.projitems b/src/SamplesApp/UITests.Shared/UITests.Shared.projitems index 31bfdcceebd2..e40fb26d3dde 100644 --- a/src/SamplesApp/UITests.Shared/UITests.Shared.projitems +++ b/src/SamplesApp/UITests.Shared/UITests.Shared.projitems @@ -461,6 +461,10 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + Designer MSBuild:Compile @@ -3806,6 +3810,9 @@ SimpleDeferLoadStrategy.xaml + + DragDrop_Basics.xaml + FocusManagerTest.xaml diff --git a/src/SamplesApp/UITests.Shared/Windows_UI_Xaml/DragAndDrop/DragDrop_Basics.xaml b/src/SamplesApp/UITests.Shared/Windows_UI_Xaml/DragAndDrop/DragDrop_Basics.xaml new file mode 100644 index 000000000000..7b53ae6c12aa --- /dev/null +++ b/src/SamplesApp/UITests.Shared/Windows_UI_Xaml/DragAndDrop/DragDrop_Basics.xaml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/SamplesApp/UITests.Shared/Windows_UI_Xaml/DragAndDrop/DragDrop_Basics.xaml.cs b/src/SamplesApp/UITests.Shared/Windows_UI_Xaml/DragAndDrop/DragDrop_Basics.xaml.cs new file mode 100644 index 000000000000..15f241a22ea7 --- /dev/null +++ b/src/SamplesApp/UITests.Shared/Windows_UI_Xaml/DragAndDrop/DragDrop_Basics.xaml.cs @@ -0,0 +1,16 @@ +using System; +using System.Linq; +using Windows.UI.Xaml.Controls; +using Uno.UI.Samples.Controls; + +namespace UITests.Windows_UI_Xaml.DragAndDrop +{ + [Sample] + public sealed partial class DragDrop_Basics : UserControl + { + public DragDrop_Basics() + { + this.InitializeComponent(); + } + } +}