Extending TableLayoutPane and gui resizing of rows\columns

  • Thread starter Thread starter yoav.sagi
  • Start date Start date
Y

yoav.sagi

hi,
i am Inheriting from TableLayoutPane with a designer that inherits
from ParentControlDesigner
..i would like to allow the user to resize the columns and rows
..All rows and columns SizeType = SizeType.Absolute
How can i detect that the user is over a colum\rown border and allow
him to resize as the real TableLayoutPanelDesigner is doing?
.thanks in Advanced


------------------------------------------------------------------------------------------------------------
[Designer(typeof(CTableLayoutPanelDesigner))]
public partial class CTableLayoutPanel : TableLayoutPanel,
IDesignerControl
{}

public interface IDesignerControl: IComponent
{}


internal class CTableLayoutPanelDesigner : ParentControlDesigner
{}
 
Back
Top