From 102b040dd98446841acedf944cf2578894b25d0c Mon Sep 17 00:00:00 2001 From: Michael Vrhel Date: Thu, 4 Apr 2013 11:25:25 -0700 Subject: Add missing files related to contents list view. --- winrt/winapp/LVContents.cpp | 9 +++++++++ winrt/winapp/LVContents.h | 12 ++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 winrt/winapp/LVContents.cpp create mode 100644 winrt/winapp/LVContents.h (limited to 'winrt') diff --git a/winrt/winapp/LVContents.cpp b/winrt/winapp/LVContents.cpp new file mode 100644 index 00000000..1905c10c --- /dev/null +++ b/winrt/winapp/LVContents.cpp @@ -0,0 +1,9 @@ +#include "pch.h" +#include "LVContents.h" + +using namespace ListViewContents; +LVContents::LVContents(void) +{ + ContentItem = ""; + Page = -1; +} diff --git a/winrt/winapp/LVContents.h b/winrt/winapp/LVContents.h new file mode 100644 index 00000000..1ca4179c --- /dev/null +++ b/winrt/winapp/LVContents.h @@ -0,0 +1,12 @@ +#pragma once +namespace ListViewContents { + [Windows::UI::Xaml::Data::Bindable] + public ref class LVContents sealed + { + public: + LVContents(void); + property Platform::String^ ContentItem; + property int Page; + + }; +} -- cgit v1.2.3