uwp-experiences/event_demos/presidents/Presidents/NavMenuItem.cs

30 строки
643 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
namespace Presidents
{
/// <summary>
/// Data to represent an item in the nav menu.
/// </summary>
public class NavMenuItem
{
public string Label { get; set; }
public Symbol Symbol { get; set; }
public char SymbolAsChar
{
get
{
return (char)this.Symbol;
}
}
public Type DestPage { get; set; }
public object Arguments { get; set; }
}
}