Update something.

This commit is contained in:
Bruce
2026-02-07 17:52:36 +08:00
parent e49f9db426
commit ca0b7dbcbb
51 changed files with 6581 additions and 5 deletions

25
WAShell/NormalForm.cs Normal file
View 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; }
}
}
}