mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-05-20 23:36:31 +03:00
commit
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
using Avalonia.Controls;
|
using Avalonia.Controls;
|
||||||
using Avalonia.Interactivity;
|
using Avalonia.Interactivity;
|
||||||
|
|
||||||
namespace KeyKeeper.Views;
|
namespace KeyKeeper.Views;
|
||||||
@@ -8,12 +8,10 @@ public partial class ErrorDialog : Window
|
|||||||
public ErrorDialog(string message)
|
public ErrorDialog(string message)
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
MinWidth = 400;
|
|
||||||
MinHeight = 200;
|
|
||||||
MessageText.Text = message;
|
MessageText.Text = message;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Ok_Click(object sender, RoutedEventArgs e)
|
private void Ok_Click(object? sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
Close();
|
Close();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user