v1
This commit is contained in:
25
OrpaonVision.ConfigApp/MainWindow.xaml.cs
Normal file
25
OrpaonVision.ConfigApp/MainWindow.xaml.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using OrpaonVision.Core.Annotation;
|
||||
using System.Windows;
|
||||
|
||||
namespace OrpaonVision.ConfigApp
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for MainWindow.xaml
|
||||
/// </summary>
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
private readonly IAnnotationSyncAppService _annotationSyncAppService;
|
||||
|
||||
/// <summary>
|
||||
/// 主窗口构造函数。
|
||||
/// </summary>
|
||||
/// <param name="annotationSyncAppService">标注同步应用服务。</param>
|
||||
public MainWindow(IAnnotationSyncAppService annotationSyncAppService)
|
||||
{
|
||||
_annotationSyncAppService = annotationSyncAppService;
|
||||
InitializeComponent();
|
||||
|
||||
Title = "OrpaonVision ConfigApp (CVAT)";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user