Is DevExpress MemoEdit Control much heavier than TextEdit?

I have a DevExpress GridControl and I want each cell to be multi-line. I was able to do this by setting the autoheight property and I set the ColumnEdit as the MemoEdit control. And everything works fine. My question is, are there any MemoEdit controls that I added delay the app more? Is MemoEdit more heavyweight than just TextEdit?

+3


source to share


1 answer


I think there isn't much of a difference in performance metrics because the DevExpress control mechanism is pretty optimized. Also MemoEdit

very similar TextEdit

in implementation.
I have implemented a 10,000 row grid with complex controls and custom drawing in cells and it works great.
But if you're worried, just create a test dataset with thousands of rows and check the UI performance.



+4


source







All Articles