mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:46:30 +00:00
19 lines
397 B
C#
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();
|
|
}
|
|
} |