mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-17 21:24:48 +10:00
Coding for Package Manager.
This commit is contained in:
25
Manager/ManagerShell.cs
Normal file
25
Manager/ManagerShell.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using System.IO;
|
||||
namespace Manager
|
||||
{
|
||||
public partial class ManagerShell: WAShell.WebAppForm
|
||||
{
|
||||
public ManagerShell ()
|
||||
{
|
||||
InitializeComponent ();
|
||||
SplashScreen.SplashBackgroundColor = Color.Honeydew;
|
||||
}
|
||||
private void ManagerShell_Load (object sender, EventArgs e)
|
||||
{
|
||||
var root = Path.GetDirectoryName (DataUtils.Utilities.GetCurrentProgramPath ());
|
||||
WebUI.Navigate (Path.Combine (root, "html\\manager.html"));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user