-
Notifications
You must be signed in to change notification settings - Fork 742
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
38d47af
commit bb52d27
Showing
4 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/SamplesApp/UITests.Shared/Resources/XuidGeneratorError.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<ContentDialog | ||
x:Class="UITests.Shared.Resources.XuidGeneratorError" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
x:Uid="XuidGeneratorErrorUid"> | ||
<Grid> | ||
<TextBlock Text="This is a crash test for the xaml generator. Nothing to see here." /> | ||
</Grid> | ||
</ContentDialog> |
10 changes: 10 additions & 0 deletions
10
src/SamplesApp/UITests.Shared/Resources/XuidGeneratorError.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using Microsoft.UI.Xaml.Controls; | ||
|
||
namespace UITests.Shared.Resources; | ||
public sealed partial class XuidGeneratorError : ContentDialog | ||
{ | ||
public XuidGeneratorError() | ||
{ | ||
this.InitializeComponent(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters