我目前正在处理从面板继承的自定义用户控件,我试图挂钩Panel的Layout事件来执行某项操作。我不想覆盖初始的布局事件,我只想挂钩并添加东西
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SamsonLogiciel
{
public partial class StretchPanel : Panel
{
public StretchPanel()
{
InitializeComponent();
}
}
}
答案 0 :(得分:1)
protected override void OnLayout(LayoutEventArgs levent)
{
// your code here
base.OnLayout(levent);
}
只需将其添加到StretchPanel
课程即可。您可以添加自己的代码以“挂钩”,然后调用base.OnLayout
,这样就不会覆盖默认的内容。