Files
annotations/Azaion.Annotator/AutodetectDialog.xaml.cs
T
Alex Bezdieniezhnykh 418a2116b7 add autodetection
2024-11-02 13:09:00 +02:00

19 lines
397 B
C#

using System.Windows;
namespace Azaion.Annotator;
public partial class AutodetectDialog : Window
{
public AutodetectDialog()
{
InitializeComponent();
}
public void Log(string message) =>
TextBlockLog.Text = TextBlockLog.Text + Environment.NewLine + message;
private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
{
Close();
}
}