mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 01:06:30 +00:00
add autodetection
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user