T
tony
Hello!
What is the differens if I use event handler onSizeChanged compare to using
the other event handler MeltPracForm_SizeChanged.
I see both as event handler is that right?
I catch the event in both cases. So is it more or less the same thing which
of these two event handler I use.
protected override void OnSizeChanged(EventArgs e)
{
....
}
private void MeltPracForm_SizeChanged(object sender, System.EventArgs e)
{
....
}
//Tony
What is the differens if I use event handler onSizeChanged compare to using
the other event handler MeltPracForm_SizeChanged.
I see both as event handler is that right?
I catch the event in both cases. So is it more or less the same thing which
of these two event handler I use.
protected override void OnSizeChanged(EventArgs e)
{
....
}
private void MeltPracForm_SizeChanged(object sender, System.EventArgs e)
{
....
}
//Tony