2022-08-23 21:12:59 +08:00

25 lines
492 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 DrawGraphManagement
{
public partial class MyPanel : Panel
{
public MyPanel()
{
InitializeComponent();
}
protected override Point ScrollToControl(Control activeControl)
{
return this.AutoScrollPosition;
}
}
}