mirror of
https://github.com/izzy2lost/vba10.git
synced 2026-03-26 18:15:30 -07:00
28 lines
668 B
C++
28 lines
668 B
C++
#pragma once
|
|
using namespace Windows::Foundation;
|
|
using namespace Windows::UI::Xaml;
|
|
using namespace Windows::UI::Xaml::Controls;
|
|
using namespace Windows::UI::Xaml::Interop;
|
|
|
|
namespace VBA10
|
|
{
|
|
/// <summary>
|
|
/// Data to represent an item in the nav menu.
|
|
/// </summary>
|
|
public ref class NavMenuItem sealed
|
|
{
|
|
public:
|
|
NavMenuItem(Platform::String^, Symbol, TypeName);
|
|
NavMenuItem(Platform::String^, Symbol, TypeName, Object^);
|
|
property Platform::String^ Label;
|
|
property Symbol Symbol;
|
|
property TypeName DestPage;
|
|
property Platform::String^ SymbolAsChar
|
|
{
|
|
Platform::String^ get();
|
|
}
|
|
property Object^ Arguments;
|
|
|
|
};
|
|
}
|