Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| // <SnippetListCodeOnlyExampleWholePage> | |
| using System; | |
| using System.Windows; | |
| using System.Windows.Media; | |
| using System.Windows.Controls; | |
| using System.Windows.Documents; | |
| namespace SDKSample | |
| { | |
| public partial class ListExample : Page | |
| { | |
| public ListExample() | |
| { | |
| // Create three paragraphs | |
| Paragraph myParagraph1 = new Paragraph(new Run("List Item 1")); | |
| Paragraph myParagraph2 = new Paragraph(new Run("List Item 2")); | |
| Paragraph myParagraph3 = new Paragraph(new Run("List Item 3")); | |
| // Create the ListItem elements for the List and add the | |
| // paragraphs to them. | |
| ListItem myListItem1 = new ListItem(); | |
| myListItem1.Blocks.Add(myParagraph1); | |
| ListItem myListItem2 = new ListItem(); | |
| myListItem2.Blocks.Add(myParagraph2); | |
| ListItem myListItem3 = new ListItem(); | |
| myListItem3.Blocks.Add(myParagraph3); | |
| // Create a List and add the three ListItems to it. | |
| List myList = new List(); | |
| myList.ListItems.Add(myListItem1); | |
| myList.ListItems.Add(myListItem2); | |
| myList.ListItems.Add(myListItem3); | |
| // Create a FlowDocument and add the section to it. | |
| FlowDocument myFlowDocument = new FlowDocument(); | |
| myFlowDocument.Blocks.Add(myList); | |
| this.Content = myFlowDocument; | |
| } | |
| } | |
| } | |
| // </SnippetListCodeOnlyExampleWholePage> |