mirror of
https://github.com/izzy2lost/vba10.git
synced 2026-03-26 18:15:30 -07:00
31 lines
726 B
C++
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);
|
|
};
|
|
}
|