mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-11 17:57:19 +10:00
Update something.
This commit is contained in:
25
WAShell/NormalForm.cs
Normal file
25
WAShell/NormalForm.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;
|
||||
|
||||
namespace WAShell
|
||||
{
|
||||
public partial class NormalForm: Form, IMetroIconSupport
|
||||
{
|
||||
public NormalForm ()
|
||||
{
|
||||
InitializeComponent ();
|
||||
}
|
||||
private Icon _iconForMetro = null;
|
||||
public virtual Icon WindowIcon
|
||||
{
|
||||
get { return _iconForMetro; }
|
||||
set { _iconForMetro = value; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user