Gives focus and selects the first item in the view.
()
| 542 | /// Gives focus and selects the first item in the view. |
| 543 | /// </summary> |
| 544 | public void SelectFirstItem() |
| 545 | { |
| 546 | if (_items.Count > 0) |
| 547 | { |
| 548 | _items[0].Focus(); |
| 549 | Select(_items[0]); |
| 550 | } |
| 551 | else |
| 552 | { |
| 553 | Focus(); |
| 554 | } |
| 555 | } |
| 556 | |
| 557 | /// <summary> |
| 558 | /// Refreshes thumbnails of all items in the <see cref="ContentView"/>. |
no test coverage detected