Skip to content

Commit

Permalink
adding heading levels to help window
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe da Conceicao Guimaraes committed Jul 19, 2021
1 parent 13dc876 commit e18a31a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Sample Applications/EditingExaminerDemo/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
ColumnWidth="400" AutomationProperties.Name="Help Text"
IsOptimalParagraphEnabled="True" IsHyphenationEnabled="True">
<Section FontSize="12">
<Paragraph FontSize="22" FontWeight="Bold">Introducing Editing Examiner</Paragraph>
<Paragraph FontSize="22" FontWeight="Bold" AutomationProperties.HeadingLevel="Level1">Introducing Editing Examiner</Paragraph>

<Paragraph>
Editing Examiner lets you watch in real time as edits are performed within a
Expand All @@ -38,29 +38,29 @@
perspectives.
</Paragraph>

<Paragraph FontSize="18" FontWeight="Bold">Application Features</Paragraph>
<Paragraph FontSize="15" FontWeight="Bold">DocumentTree Tab</Paragraph>
<Paragraph FontSize="18" FontWeight="Bold" AutomationProperties.HeadingLevel="Level2">Application Features</Paragraph>
<Paragraph FontSize="15" FontWeight="Bold" AutomationProperties.HeadingLevel="Level3">DocumentTree Tab</Paragraph>
<Paragraph>
The DocumentTree Tab displays the entire TreeView of the document container. It demonstrates how to use the
TextElementCollection features. It updates automatically on each TextChanged event of the RichTextBox.
This allows you to visualize the document hierarchy.
</Paragraph>

<Paragraph FontSize="15" FontWeight="Bold">TextSerializedXaml Tab</Paragraph>
<Paragraph FontSize="15" FontWeight="Bold" AutomationProperties.HeadingLevel="Level3">TextSerializedXaml Tab</Paragraph>

<Paragraph>
By clicking on the Text Serialization tab, the underlying XAML is exposed, using WPF serialization
features. The TreeView is instantly updated when the Tab is selected. You can edit your XAML content
and set it back to the RichTextBox by right clicking and selecting the correct item.
</Paragraph>

<Paragraph FontSize="15" FontWeight="Bold">SelectionXAML Tab</Paragraph>
<Paragraph FontSize="15" FontWeight="Bold" AutomationProperties.HeadingLevel="Level3">SelectionXAML Tab</Paragraph>

<Paragraph>
This tab displays the underlying XAML of the selected content within the RichTextBox.
</Paragraph>

<Paragraph FontSize="15" FontWeight="Bold">CoreXAML Tab:</Paragraph>
<Paragraph FontSize="15" FontWeight="Bold" AutomationProperties.HeadingLevel="Level3">CoreXAML Tab:</Paragraph>

<Paragraph>
This tab accesses the WPF core parser in order to parse an object. The object can then be inserted
Expand All @@ -69,7 +69,7 @@
</Paragraph>


<Paragraph FontSize="15" FontWeight="Bold">Immediate Window:</Paragraph>
<Paragraph FontSize="15" FontWeight="Bold" AutomationProperties.HeadingLevel="Level3">Immediate Window:</Paragraph>

<Paragraph>
This provides an instant way to invoke methods, and get or set properties.
Expand Down Expand Up @@ -132,7 +132,7 @@ Selection = RichTextBox.Selection;
</ListItem>
</List>

<Paragraph FontSize="15" FontWeight="Bold">Error messages:</Paragraph>
<Paragraph FontSize="15" FontWeight="Bold" AutomationProperties.HeadingLevel="Level3">Error messages:</Paragraph>

<Paragraph>There are two primary errors to look for when using the immediate window:</Paragraph>
<List>
Expand Down

0 comments on commit e18a31a

Please sign in to comment.