I'm maintaining a hybrid application, containing both WinForms and WPF technologies. Ideally, the look-and-feel should be identical between the WPF controls and the WinForms controls.
Here's the difference: in WinForms, if you select a text box with a mnemonic key, the entire contents of the text box is automatically selected. This is good behavior: if you want to replace the text, you simply press the menmonic keys and start typing.
In WPF, if you select a text box with a mnemonic key, the cursor appears at the BEGINNING of the text. Why would anyone want the cursor to be at the beginning? How often do people want to PREPEND to the text?
Does anyone know if there is an easy way to change the behavior of a WPF text box, so that activating the text box with a mnemonic selects the whole text? However, activating the text box with the mouse button should place the cursor wherever you clicked the mouse.