Does Anybody Know how to select (No Click Select) the first row when the DataPresenter is First Loaded?
Thanks,
Thak you for your suggestion Alex, I will try it.
Hello,
You can do that with setting the IsSelected Property of the records (first in this case) to True.
XamDataPresenter xamDataPresenter = new XamDataPresenter();xamDataPresenter .Records[0].IsSelected = true;
Hope this helps.
Alex