30 lines
693 B
C#
30 lines
693 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AIMS.PublicUI.UI
|
|
{
|
|
public partial class DrawPanel : Panel
|
|
{
|
|
public DrawPanel()
|
|
{
|
|
InitializeComponent();
|
|
//Application.AddMessageFilter(this);
|
|
}
|
|
protected override Point ScrollToControl(Control activeControl)
|
|
{
|
|
return this.AutoScrollPosition;
|
|
}
|
|
|
|
//public bool PreFilterMessage(ref Message m)
|
|
//{
|
|
// if (m.Msg == 522) { return true; } else { return false; }
|
|
//}
|
|
}
|
|
}
|