mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
Added icons to entries and groups with a mapping Created a Converter to handle pluralization Several UI enhancements
30 lines
730 B
C#
30 lines
730 B
C#
using System;
|
|
using Windows.UI.Xaml.Controls;
|
|
using ModernKeePass.Interfaces;
|
|
|
|
namespace ModernKeePass.Models
|
|
{
|
|
public class MainMenuItem: IIsEnabled
|
|
{
|
|
private string _title;
|
|
|
|
public string Title
|
|
{
|
|
get { return IsEnabled ? _title : _title + " - Coming soon"; }
|
|
set { _title = value; }
|
|
}
|
|
|
|
public Type PageType { get; set; }
|
|
public object Parameter { get; set; }
|
|
public Frame Destination { get; set; }
|
|
public int Group { get; set; } = 0;
|
|
public Symbol SymbolIcon { get; set; }
|
|
public bool IsEnabled => PageType != null;
|
|
|
|
public override string ToString()
|
|
{
|
|
return Title;
|
|
}
|
|
}
|
|
}
|