mirror of
https://github.com/izzy2lost/vba10.git
synced 2026-03-26 18:15:30 -07:00
27 lines
835 B
C++
27 lines
835 B
C++
//
|
|
// SelectFilesPane.xaml.h
|
|
// Declaration of the SelectFilesPane class
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "SelectFilesPane.g.h"
|
|
|
|
namespace VBA10
|
|
{
|
|
public delegate void FilesSelectedDelegate(Windows::Foundation::Collections::IVector<int>^ selectedIndices);
|
|
|
|
[Windows::Foundation::Metadata::WebHostHidden]
|
|
public ref class SelectFilesPane sealed
|
|
{
|
|
public:
|
|
SelectFilesPane(Windows::Foundation::Collections::IVector<Platform::String^>^ list, Platform::String^ Title);
|
|
property FilesSelectedDelegate ^FilesSelectedCallback;
|
|
private:
|
|
bool initdone;
|
|
Platform::Collections::Vector<Windows::Storage::StorageFile^>^ fileVector;
|
|
void OkBtn_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
|
|
void CancelBtn_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
|
|
};
|
|
}
|