I have a master-detail view, which I created in Silverlight 2. So, I'm not using the new master-detail stuff available in SL3.
So basically you have a grid at the top, and at the bottom you have the details for whatever item you select in the grid appearing in a panel.
I did not want the user to be able to accidentally change the values in the fields, so I went with labels.
the user asked for cut and paste :) Because I could not get the focus of that label, I implemented a non standard cut and paste solution by having the user right click in the label, and it puts it on the clipboard. The user then can do Ctrl+V to paste it somewhere else or in any other windows app.
However, now there are some users saying they need to be able to select a part of the item in the label, say the first 3 characters or the last 2 using the mouse or keyboard. So, it seems like the label needs to be replaced with an textbox control.
The problem doing this seems to be that if I set the textbox to readonly I cannot cut and paste from it. So, sure it's a textbox, and you cannot edit it, but you cannot copy/select from it either.
Is there another way to do this?
thanks for any help you can provide,
Sincerely, J__