mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-11 17:57:19 +10:00
20 lines
363 B
C#
20 lines
363 B
C#
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; }
|
|
}
|
|
}
|
|
}
|