Skip to content

Commit

Permalink
feat: Adding ListView page
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrandolph committed May 30, 2022
1 parent 0720839 commit a506c6b
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 47 deletions.
Expand Up @@ -85,6 +85,9 @@
<Compile Include="$(MSBuildThisFileDirectory)Views\HomePage.xaml.cs">
<DependentUpon>HomePage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)Views\ListViewPage.xaml.cs">
<DependentUpon>ListViewPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)Views\MainPage.xaml.cs">
<DependentUpon>MainPage.xaml</DependentUpon>
</Compile>
Expand Down Expand Up @@ -183,6 +186,10 @@
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)Views\ListViewPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)Views\MainPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
Expand Down
Expand Up @@ -10,51 +10,5 @@
<PropertyGroup />
<Import Project="Playground.Shared.projitems" Label="Shared" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.CSharp.targets" />
<ItemGroup>
<_Globbed_Compile Remove="Models\AppInfo.cs" />
<_Globbed_Compile Remove="Models\Country.cs" />
<_Globbed_Compile Remove="Models\NavWidget.cs" />
<_Globbed_Compile Remove="Models\Widget.cs" />
<_Globbed_Compile Remove="Services\NeedsADispatcherService.cs" />
<_Globbed_Compile Remove="Services\SimpleStartupService.cs" />
<_Globbed_Compile Remove="ViewModels\AdHocViewModel.cs" />
<_Globbed_Compile Remove="ViewModels\HomeViewModel.cs" />
<_Globbed_Compile Remove="ViewModels\NavContentViewModel.cs" />
<_Globbed_Compile Remove="ViewModels\NavigationViewViewModel.cs" />
<_Globbed_Compile Remove="ViewModels\SecondViewModel.cs" />
<_Globbed_Compile Remove="ViewModels\SimpleViewModel.cs" />
<_Globbed_Compile Remove="ViewModels\VMViewModel.cs" />
<_Globbed_Compile Remove="ViewModels\XamlViewModel.cs" />
<_Globbed_Compile Remove="Views\AdHocPage.xaml.cs" />
<_Globbed_Compile Remove="Views\AlternatePage.xaml.cs" />
<_Globbed_Compile Remove="Views\AuthTokenDialog.xaml.cs" />
<_Globbed_Compile Remove="Views\BasicFlyout.xaml.cs" />
<_Globbed_Compile Remove="Views\CodeBehindPage.xaml.cs" />
<_Globbed_Compile Remove="Views\ContentControlPage.xaml.cs" />
<_Globbed_Compile Remove="Views\FlyoutsPopupsDrawerPage.xaml.cs" />
<_Globbed_Compile Remove="Views\MainPage.xaml.cs" />
<_Globbed_Compile Remove="Views\NavContentPage.xaml.cs" />
<_Globbed_Compile Remove="Views\NavContentSecondPage.xaml.cs" />
<_Globbed_Compile Remove="Views\NavigationViewPage.xaml.cs" />
<_Globbed_Compile Remove="Views\ShellView.xaml.cs" />
<_Globbed_Compile Remove="Views\TabBarPage.xaml.cs" />
<_Globbed_Compile Remove="Views\ViewModelPage.xaml.cs" />
<_Globbed_Compile Remove="Views\XamlPage.xaml.cs" />
</ItemGroup>
<ItemGroup>
<_Globbled_Page Remove="Views\AdHocPage.xaml" />
<_Globbled_Page Remove="Views\AlternatePage.xaml" />
<_Globbled_Page Remove="Views\AuthTokenDialog.xaml" />
<_Globbled_Page Remove="Views\BasicFlyout.xaml" />
<_Globbled_Page Remove="Views\CodeBehindPage.xaml" />
<_Globbled_Page Remove="Views\ContentControlPage.xaml" />
<_Globbled_Page Remove="Views\FlyoutsPopupsDrawerPage.xaml" />
<_Globbled_Page Remove="Views\MainPage.xaml" />
<_Globbled_Page Remove="Views\NavContentPage.xaml" />
<_Globbled_Page Remove="Views\NavContentSecondPage.xaml" />
<_Globbled_Page Remove="Views\NavigationViewPage.xaml" />
<_Globbled_Page Remove="Views\ShellView.xaml" />
<_Globbled_Page Remove="Views\TabBarPage.xaml" />
<_Globbled_Page Remove="Views\XamlPage.xaml" />
</ItemGroup>

</Project>
@@ -0,0 +1,14 @@
<Page
x:Class="Playground.Views.ListViewPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Playground.Views"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

<Grid>

</Grid>
</Page>
@@ -0,0 +1,10 @@

namespace Playground.Views;

public sealed partial class ListViewPage : Page
{
public ListViewPage()
{
this.InitializeComponent();
}
}

0 comments on commit a506c6b

Please sign in to comment.