Files
SCRGroupLine/GroupLine.App/View/KanBan/KanBan_Update.xaml.cs
2026-03-16 10:36:47 +08:00

29 lines
996 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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();
}
}
}