-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathPurchasePage.xaml.h
38 lines (33 loc) · 1017 Bytes
/
PurchasePage.xaml.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// PurchasePage.xaml.h
// Declaration of the PurchasePage class
//
#pragma once
#include "PurchasePage.g.h"
namespace VBA10
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
[Windows::Foundation::Metadata::WebHostHidden]
public ref class PurchasePage sealed
{
public:
PurchasePage();
protected:
virtual void OnNavigatedTo(Windows::UI::Xaml::Navigation::NavigationEventArgs^ e) override;
private:
void ButtonBuyNow_Clicked(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
void loadProductsBtn_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
};
[Windows::UI::Xaml::Data::BindableAttribute]
public ref class ProductItem sealed
{
public:
property Platform::String^ imgLink;
property Platform::String^ Status;
property Platform::String^ Name;
property Platform::String^ key;
property Windows::UI::Xaml::Visibility BuyNowButtonVisible;
};
}