nerdexam
Microsoft

70-484 · Question #25

You need to identify alternative methods of displaying information from the FeedRetriever class. Which data controls can you use to achieve this goal? (Each correct answer presents a complete…

The correct answer is A. stackPanel C. GridView. From scenario: The app will retrieve data from RSS feeds by using the FeedRetriever class. Data from the FeedRetriever class must be presented in a data control. By default, data is presented in a ListView control. The design team has provided a custom XAML code segment for the…

Create the User Interface

Question

You need to identify alternative methods of displaying information from the FeedRetriever class. Which data controls can you use to achieve this goal? (Each correct answer presents a complete solution. Choose all that apply.)

Options

  • AstackPanel
  • BWrapGrid
  • CGridView
  • DFlipView

How the community answered

(55 responses)
  • A
    76% (42)
  • B
    7% (4)
  • D
    16% (9)

Explanation

  • From scenario: The app will retrieve data from RSS feeds by using the FeedRetriever class. Data from the FeedRetriever class must be presented in a data control. By default, data is presented in a ListView control. The design team has provided a custom XAML code segment for the itemTemplate attribute of the GridView control that displays RSS feeds. - StackPanel Class Arranges child elements into a single line that can be oriented horizontally or vertically. - GridView Class Displays the values of a data source in a table where each column represents a field and each row represents a record. The GridView control enables you to select, sort, and edit these items. - WrapGrid class Applies to Windows and Windows Phone Positions child elements sequentially from left to right or top to bottom. When elements extend beyond the container edge, elements are positioned in the next row or column. Can only be used to display items in an ItemsControl. - FlipView class Represents an items control that displays one item at a time, and enables "flip" behavior for traversing its collection of items.

Topics

#data controls#GridView#StackPanel#FlipView

Community Discussion

No community discussion yet for this question.

Full 70-484 Practice