Skip to content

Commit

Permalink
#22
Browse files Browse the repository at this point in the history
NGame1 committed Jan 26, 2023
1 parent 9bb230f commit a75f3fa
Showing 2 changed files with 43 additions and 0 deletions.
13 changes: 13 additions & 0 deletions WinstaNext/Views/Media/IncrementalStaggeredView.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Page
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
x:Class="WinstaNext.Views.Media.IncrementalStaggeredView"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WinstaNext.Views.Media"
mc:Ignorable="d">

<Grid>

</Grid>
</Page>
30 changes: 30 additions & 0 deletions WinstaNext/Views/Media/IncrementalStaggeredView.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;

// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238

namespace WinstaNext.Views.Media
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class IncrementalStaggeredView : Page
{
public IncrementalStaggeredView()
{
this.InitializeComponent();
}
}
}

0 comments on commit a75f3fa

Please sign in to comment.