mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-14 04:38:28 +10:00
32 lines
980 B
C#
32 lines
980 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Reader
|
|
{
|
|
static class Program
|
|
{
|
|
static public readonly string g_appUserId = "WindowsModern.PracticalToolsProject!Reader";
|
|
static public readonly string g_appId = "Reader";
|
|
/// <summary>
|
|
/// 应用程序的主入口点。
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main ()
|
|
{
|
|
Directory.SetCurrentDirectory (AppDomain.CurrentDomain.BaseDirectory);
|
|
AppxPackage.PackageReader.AddApplicationItem ("SmallLogo");
|
|
AppxPackage.PackageReader.AddApplicationItem ("Square30x30Logo");
|
|
AppxPackage.PackageReader.AddApplicationItem ("Logo");
|
|
AppxPackage.PackageReader.AddApplicationItem ("Square44x44Logo");
|
|
DataUtils.BrowserEmulation.SetWebBrowserEmulation ();
|
|
Application.EnableVisualStyles ();
|
|
Application.SetCompatibleTextRenderingDefault (false);
|
|
Application.Run (new ReaderShell ());
|
|
}
|
|
}
|
|
}
|