N
nic
Hi,
In VB.NET there is following code :
Private Sub mItems_Invalidate() Handles Columns.Invalidate
DataBind()
End Sub
How can I translate that to C# I know following
private void mItems_Invalidate()
{
DataBind();
}
But what with Handles Colums.Invalidate??
Thanks,
nic
In VB.NET there is following code :
Private Sub mItems_Invalidate() Handles Columns.Invalidate
DataBind()
End Sub
How can I translate that to C# I know following
private void mItems_Invalidate()
{
DataBind();
}
But what with Handles Colums.Invalidate??
Thanks,
nic