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