// // 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^ list, Platform::String^ Title); property FileSelectedDelegate ^FileSelectedCallback; private: bool initdone; //Platform::Collections::Vector^ fileVector; void fileList_SelectionChanged(Platform::Object^ sender, Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e); }; }