How can I natural string sort a datagridview that is databound to a datatable
问题 In my program, I have a datagridview that is bound to a datatable using a binding source. What I would like to accomplish to be able to sort the datagridview by a column using a natural string sort. Sample Column Data: XAB-1 XAB-2 XAB-11 XAB-3 XAB-1A XAB-10 XAB-1B Desired Result: XAB-1 XAB-1A XAB-1B XAB-2 XAB-3 XAB-10 XAB-11 I have tried using the datagridview.sort method passing in a natural string Icomparer, but the sort function cannot be used when the datagridview is databound. I have