浏览代码

Fix Client Service

Zixuan 13 小时之前
父节点
当前提交
6778f3a4e4
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      EEMSUIClient/Services/ClientService.cs

+ 7 - 1
EEMSUIClient/Services/ClientService.cs

@@ -1,5 +1,6 @@
 using EEMSClientCore;
 using ServiceBase;
+using System.Windows;
 
 namespace EEMSUIClient.Services
 {
@@ -84,7 +85,12 @@ namespace EEMSUIClient.Services
 
         public void FileReceivedNotify(FileType fileType)
         {
-            throw new NotImplementedException();
+            MessageBox.Show($"{fileType} Received");
+        }
+
+        public void StartFileReceiveNotify(FileType fileType)
+        {
+            MessageBox.Show($"Start Receiving {fileType} File");
         }
     }
 }