mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 16:10:16 -04:00

Changed the way recent files are retrieved Stopped showing the DB Closed exception on suspend Reordering entries works Moved code from infra to application Cleanup
36 lines
995 B
C#
36 lines
995 B
C#
using System;
|
|
using Windows.Storage.Pickers;
|
|
using Windows.UI.Xaml;
|
|
|
|
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
|
|
|
|
namespace ModernKeePass.Views
|
|
{
|
|
/// <summary>
|
|
/// The import/export page.
|
|
/// </summary>
|
|
public sealed partial class ImportExportPage
|
|
{
|
|
public ImportExportPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private async void ImportFileButton_OnClick(object sender, RoutedEventArgs e)
|
|
{
|
|
var picker =
|
|
new FileOpenPicker
|
|
{
|
|
ViewMode = PickerViewMode.List,
|
|
SuggestedStartLocation = PickerLocationId.DocumentsLibrary
|
|
};
|
|
picker.FileTypeFilter.Add(".csv");
|
|
|
|
// Application now has read/write access to the picked file
|
|
var file = await picker.PickSingleFileAsync().AsTask();
|
|
if (file == null) return;
|
|
|
|
}
|
|
}
|
|
}
|