Files
vba10/SelectFilePane.xaml.h
2015-08-06 14:24:47 +00:00

31 lines
726 B
C++

//
// SelectStatePane.xaml.h
// Declaration of the SelectStatePane class
//
#pragma once
#include "SelectFilePane.g.h"
namespace VBA10
{
public delegate void FileSelectedDelegate(int selectedIndex);
[Windows::Foundation::Metadata::WebHostHidden]
public ref class SelectFilePane sealed
{
public:
SelectFilePane(Windows::Foundation::Collections::IVector<Platform::String^>^ list, Platform::String^ Title);
property FileSelectedDelegate ^FileSelectedCallback;
private:
bool initdone;
//Platform::Collections::Vector<Platform::String^>^ fileVector;
void fileList_SelectionChanged(Platform::Object^ sender, Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e);
};
}