Hello Peter,
Almost right. Looks good too.
I have an order list. I'll fill it out.
Now the operator can select another order to see what it contains. He can't make any changes.
The order list is processed automatically.
Target quantity and current quantity. (code behind, the list is only read only)
The idea is then to select the first line again when making this change, because that is the active order.
Application.Current.Dispatcher.Invoke(() => { CViewSource1.View.MoveCurrentToFirst(); });
Works with it.
1-> I select a other row.
2 -> The code behind calls MoveCurrentToFirst --> Works too
How can I display the line in blue? Then the operator can see it better!
How can I simply assign a different color?
I think if i call this MoveCurrentToFirst(), the next should be to call something like this setFocus
How can I do it?