Does Anybody Know how to select (No Click Select) the first row when the DataPresenter is First Loaded?
Thanks,
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
Thak you for your suggestion Alex, I will try it.