diff --git a/FunGame.Desktop/Library/Component/GeneralForm.cs b/FunGame.Desktop/Library/Component/GeneralForm.cs
index 067c05e..a5747c3 100644
--- a/FunGame.Desktop/Library/Component/GeneralForm.cs
+++ b/FunGame.Desktop/Library/Component/GeneralForm.cs
@@ -64,10 +64,8 @@ namespace Milimoe.FunGame.Desktop.Library.Component
///
/// 提供公共方法给Controller发送消息弹窗(这样可以防止跨线程时,弹窗不在最上层)
///
- ///
///
///
- ///
public string ShowInputMessage(string msg, string title)
{
string input = "";
@@ -86,10 +84,9 @@ namespace Milimoe.FunGame.Desktop.Library.Component
/// 提供公共方法给Controller发送消息弹窗(这样可以防止跨线程时,弹窗不在最上层)
/// 支持返回点击的按钮,用于判断是否取消输入
///
- ///
///
///
- ///
+ ///
public string ShowInputMessageCancel(string msg, string title, out MessageResult result)
{
MessageResult resultThisMethod = MessageResult.Cancel;