以编程方式提升Control的ParentChanged事件

时间:2012-10-09 15:34:38

标签: c# winforms events controls

  

可能重复:
  Find row index of control added to TableLayoutPanel

我们可以在Windows窗体中以编程方式为控件提升ParentChanged事件吗?

或者就此而言,以编程方式提出任何控制事件?

1 个答案:

答案 0 :(得分:0)

通常,外部来电者无法做到这一点。

在Control-derived类中,您可以调用:

base.OnParentChanged(EventArgs.Empty);