添加项目文件。

This commit is contained in:
2026-03-16 10:36:47 +08:00
parent aa2e0d4a45
commit 54b11c9c84
309 changed files with 41803 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
using GalaSoft.MvvmLight.Messaging;
using System;
using System.Windows;
namespace GroupLine.App.View.KanBan
{
/// <summary>
/// KanBan_Update.xaml 的交互逻辑
/// </summary>
public partial class KanBan_Update : Window
{
public KanBan_Update()
{
InitializeComponent();
WindowStartupLocation = WindowStartupLocation.CenterScreen;
//InitializeComponent();
//消息标志tokenViewAlert用于标识只阅读某个或者某些Sender发送的消息并执行相应的处理所以Sender那边的token要保持一致
//执行方法ActionShowReceiveInfo用来执行接收到消息后的后续工作注意这边是支持泛型能力的所以传递参数很方便。
Messenger.Default.Register<String>(this, "CloseCurrentWindow", CloseCurrentWindow);
}
private void CloseCurrentWindow(string obj)
{
this.Close();
}
}
}