DictionaryWindow dragdrop support custom control.
Hi,
When i select a column and drag drop it to designer page in DictionaryWindow, TextObject will be created if i set the column's property BindableControl = Text. but i want to create my control like MyTextObject.
I hope FastReport.net can support this feature in next version.
thanks.
When i select a column and drag drop it to designer page in DictionaryWindow, TextObject will be created if i set the column's property BindableControl = Text. but i want to create my control like MyTextObject.
I hope FastReport.net can support this feature in next version.
thanks.
Comments
I will add the Column.CustomBindableControl property in the next build. You can set the type name of your object in this property.
If report have an event when creating object in designer, I can create MyObject and set it's property in event.
I think it will be more flexible if you can support more event, such as dragdrop, dragover events in designer, I can provide my custom wizard and communicate with designer freely.
I think if report can connect with Biz project seamlessly, It will be very valuable.
thanks.
I also want TableObject can create MyTableCell inherited from TableCell, thus MyTableCell can add my project's special properties.
Thank you very much.
TableBase class can add virtual method like following:
protected virtual TableCell CreateTableCell()
{
return new TableCell();
}
I will override this method and return MyTableCell.
Thanks.