CodeWalker/CodeWalker.WinForms/PanelFix.cs

25 lines
469 B
C#
Raw Normal View History

2018-03-17 05:12:04 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CodeWalker.WinForms
{
public partial class PanelFix : Panel
{
public PanelFix()
{
InitializeComponent();
}
protected override void OnMouseWheel(MouseEventArgs e)
{
}
}
}