mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
Set database as part of App (so, Singleton) Changed main page view model WIP and testing saving mechanism
31 lines
794 B
C#
31 lines
794 B
C#
using System.ComponentModel;
|
|
using Windows.Storage;
|
|
|
|
using ModernKeePassLib;
|
|
using ModernKeePassLib.Keys;
|
|
using ModernKeePassLib.Serialization;
|
|
using ModernKeePassLib.Interfaces;
|
|
using Windows.UI.Xaml;
|
|
using System;
|
|
|
|
namespace ModernKeePass.ViewModels
|
|
{
|
|
public class HomeVm : INotifyPropertyChanged
|
|
{
|
|
public string Password { get; set; }
|
|
public Visibility Visibility { get; set; }
|
|
public string ErrorMessage { get; set; }
|
|
|
|
public HomeVm()
|
|
{
|
|
Visibility = Visibility.Collapsed;
|
|
}
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
public void NotifyPropertyChanged(string propertyName)
|
|
{
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|
|
}
|