File tree Expand file tree Collapse file tree 2 files changed +12
-23
lines changed
labs/SizerBase/tests/SizerBase.Tests Expand file tree Collapse file tree 2 files changed +12
-23
lines changed Original file line number Diff line number Diff line change 1
- <Page
2
- x : Class =" SizerBase.Tests.TouchInjectionTest"
3
- xmlns =" http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4
- xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml"
5
- xmlns : local =" using:CommunityToolkit.Labs.UnitTests.Shared"
6
- xmlns : d =" http://schemas.microsoft.com/expression/blend/2008"
7
- xmlns : mc =" http://schemas.openxmlformats.org/markup-compatibility/2006"
8
- mc : Ignorable =" d"
9
- Background =" {ThemeResource ApplicationPageBackgroundThemeBrush}" >
1
+ <Page x : Class =" SizerBase.Tests.TouchInjectionTest"
2
+ xmlns =" http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
+ xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml"
4
+ xmlns : d =" http://schemas.microsoft.com/expression/blend/2008"
5
+ xmlns : local =" using:CommunityToolkit.Labs.UnitTests.Shared"
6
+ xmlns : mc =" http://schemas.openxmlformats.org/markup-compatibility/2006"
7
+ Background =" {ThemeResource ApplicationPageBackgroundThemeBrush}"
8
+ mc : Ignorable =" d" >
10
9
11
10
<Grid >
12
11
<Button x : Name =" TestButton"
12
+ Width =" 100"
13
+ Height =" 50"
13
14
Margin =" 100,100,0,0"
14
- Width =" 100" Height =" 50"
15
- Content =" Not Clicked"
16
- Click =" TestButton_Click" />
15
+ Click =" TestButton_Click"
16
+ Content =" Not Clicked" />
17
17
</Grid >
18
18
</Page >
Original file line number Diff line number Diff line change 2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
3
// See the LICENSE file in the project root for more information.
4
4
5
- using System ;
6
- using System . Collections . Generic ;
7
- using System . IO ;
8
- using System . Linq ;
9
- using System . Runtime . InteropServices . WindowsRuntime ;
10
- using Windows . Foundation ;
11
- using Windows . Foundation . Collections ;
12
- using System . Diagnostics . Contracts ;
13
-
14
5
#if ! WINAPPSDK
15
- using Windows . Foundation ;
16
- using Windows . Foundation . Collections ;
17
6
using Windows . UI . Xaml ;
18
7
using Windows . UI . Xaml . Controls ;
19
8
using Windows . UI . Xaml . Controls . Primitives ;
You can’t perform that action at this time.
0 commit comments