Skip to content

Commit bb27099

Browse files
committed
Fix issue (#138
1 parent 5016e05 commit bb27099

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

src/WPFDevelopers.Samples.Shared/ExampleViews/BasicControlsExample.xaml

+16-5
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,7 @@
375375
<ComboBox
376376
wd:ElementHelper.Watermark="ComboBox"
377377
Background="LightYellow"
378+
FontSize="20"
378379
Foreground="Black">
379380
<ComboBoxItem>Option 1</ComboBoxItem>
380381
<ComboBoxItem>Option 2</ComboBoxItem>
@@ -425,7 +426,7 @@
425426
<CalendarDateRange End="2023-04-07" Start="2023-03-31" />
426427
</DatePicker.BlackoutDates>
427428
</DatePicker>
428-
<DatePicker Margin="10,0" wd:DatePickerHelper.IsMonthYear="True"/>
429+
<DatePicker Margin="10,0" wd:DatePickerHelper.IsMonthYear="True" />
429430
</UniformGrid>
430431

431432
<TextBlock
@@ -497,16 +498,19 @@
497498
Margin="0,20,0,0"
498499
FontSize="20"
499500
Text="DataGrid" />
500-
<TabControl Height="200" Margin="0,10">
501+
<TabControl
502+
Height="200"
503+
Margin="0,10"
504+
FontSize="20">
501505
<TabItem
502506
Height="38"
503507
Padding="20,0"
504508
Header="Mode 1">
505509
<DataGrid
506510
wd:ElementHelper.CornerRadius="3"
507511
AutoGenerateColumns="False"
508-
HeadersVisibility="All"
509512
FontSize="20"
513+
HeadersVisibility="All"
510514
ItemsSource="{Binding UserCollection, RelativeSource={RelativeSource AncestorType=UserControl}}"
511515
RowHeaderWidth="40">
512516
<DataGrid.RowHeaderTemplate>
@@ -618,6 +622,7 @@
618622
<ListBox
619623
wd:ElementHelper.CornerRadius="3"
620624
DisplayMemberPath="Name"
625+
FontSize="20"
621626
ItemsSource="{Binding UserCollection, RelativeSource={RelativeSource AncestorType=UserControl}}" />
622627
<ListBox Margin="10,0" ItemsSource="{Binding UserCollection, RelativeSource={RelativeSource AncestorType=UserControl}}">
623628
<ListBox.ItemTemplate>
@@ -637,7 +642,10 @@
637642
FontSize="20"
638643
Text="ListView" />
639644
<UniformGrid Margin="0,10" Columns="2">
640-
<ListView wd:ElementHelper.CornerRadius="3" ItemsSource="{Binding UserCollection, RelativeSource={RelativeSource AncestorType=UserControl}}">
645+
<ListView
646+
wd:ElementHelper.CornerRadius="3"
647+
FontSize="20"
648+
ItemsSource="{Binding UserCollection, RelativeSource={RelativeSource AncestorType=UserControl}}">
641649
<ListView.View>
642650
<GridView>
643651
<GridViewColumn DisplayMemberBinding="{Binding Date}" Header="Date" />
@@ -674,7 +682,10 @@
674682
Height="400"
675683
Margin="0,10"
676684
Columns="2">
677-
<TreeView wd:ElementHelper.CornerRadius="3" ItemsSource="{Binding UserCollection, RelativeSource={RelativeSource AncestorType=UserControl}}">
685+
<TreeView
686+
wd:ElementHelper.CornerRadius="3"
687+
FontSize="20"
688+
ItemsSource="{Binding UserCollection, RelativeSource={RelativeSource AncestorType=UserControl}}">
678689
<TreeView.ItemTemplate>
679690
<HierarchicalDataTemplate ItemsSource="{Binding Children}">
680691
<Border>

0 commit comments

Comments
 (0)