I have a DataGrid, with a custom ColumnStyle that displays a user
control. The user control has several TextBoxes on it. I would like
these TextBoxes to act like normal textboxes with regards to the arrow
keys--right and left would move the cursor, holding down shift would
highlight text, etc. I can inherit from TextBox, and override the
ProcessCmdKey and do all this explicitly, but that seems a lot like
re-inventing the wheel. Is there another way to do this that
essentially just tells the DataGrid to treat the TextBox like a real
TextBox?
Thanks