Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<controls:HeaderedItemsControl Footer="Footer 1"
Header="Header 1"
<controls:HeaderedItemsControl Footer="Plain text footer"
Header="Default header and footer"
ItemsSource="{x:Bind Items, Mode=OneWay}" />

<controls:HeaderedItemsControl Grid.Column="1"
Footer="Footer 2"
Header="Header 2"
Footer="Styled footer"
Header="Templated header and footer"
ItemsSource="{x:Bind Items, Mode=OneWay}">
<controls:HeaderedItemsControl.HeaderTemplate>
<DataTemplate>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
mc:Ignorable="d">

<Grid>
<controls:HeaderedTreeView Footer="Footer"
Header="Header"
<controls:HeaderedTreeView Footer="Files are read-only"
Header="Project files"
ItemsSource="{x:Bind Items, Mode=OneWay}">
<controls:HeaderedTreeView.HeaderTemplate>
<DataTemplate>
Expand Down
4 changes: 2 additions & 2 deletions components/SettingsControls/samples/SettingsCardSample.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<StackPanel Spacing="4">

<controls:SettingsCard x:Name="settingsCard"
Description="This is a default card, with the Header, HeaderIcon, Description and Content set."
Header="This is the Header"
Description="A SettingsCard with Header, HeaderIcon, Description and Content set."
Header="Default SettingsCard"
HeaderIcon="{ui:FontIcon Glyph=&#xE799;}"
IsEnabled="{x:Bind IsCardEnabled, Mode=OneWay}">
<ComboBox SelectedIndex="0">
Expand Down
4 changes: 2 additions & 2 deletions components/SettingsControls/samples/SettingsPageExample.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
</win:StackPanel.ChildrenTransitions>
<TextBlock Style="{StaticResource SettingsSectionHeaderTextBlockStyle}"
Text="Section 1" />
<controls:SettingsCard Description="This is a default card, with the Header, HeaderIcon, Description and Content set"
Header="This is the Header"
<controls:SettingsCard Description="A typical SettingsCard with a toggle for enabling a feature."
Header="Notifications"
HeaderIcon="{ui:FontIcon Glyph=&#xE716;}">
<ToggleSwitch IsOn="True" />
</controls:SettingsCard>
Expand Down
Loading