添加项目文件。

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,40 @@
using System;
using System.Windows;
namespace GroupLine.App.View
{
/// <summary>
/// MsgInput.xaml 的交互逻辑
/// </summary>
public partial class MsgInput : Window
{
public MsgInput()
{
InitializeComponent();
}
public string InputValue
{
get
{
return Box.Text;
}
set
{
this.Box.Text = value;
}
}
public event EventHandler Accept;
private void ButtonCmd_Click(object sender, RoutedEventArgs e)
{
if (Accept != null)
{
Accept(this, EventArgs.Empty);
this.Close();
}
}
}
}