Update about Manager.

This commit is contained in:
Bruce
2026-02-06 18:12:21 +08:00
parent d91948eaff
commit d85fbb8de8
52 changed files with 4949 additions and 50 deletions

View File

@@ -0,0 +1,19 @@
using System.Windows.Forms;
using Bridge;
namespace Manager
{
public partial class LoadingStatusForm: Form
{
public LoadingStatusForm ()
{
InitializeComponent ();
label1.Text = ResXmlStore.StringRes.Get ("MANAGER_APP_SHORTCUTCREATE_LOADING");
}
public string TipText
{
get { return label1.Text; }
set { label1.Text = value; }
}
}
}