summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--winrt/winapp/LVContents.cpp9
-rw-r--r--winrt/winapp/LVContents.h12
2 files changed, 21 insertions, 0 deletions
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;
+
+ };
+}