25 lines
492 B
C#
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;
|
|
}
|
|
}
|
|
}
|