Skip to content

Commit 006c31e

Browse files
Merge pull request #83 from WPFDevelopersOrg/dev
dev pull request master
2 parents 1da07cc + 9594166 commit 006c31e

32 files changed

+762
-206
lines changed

src/WPFDevelopers.Net40/Themes/Generic.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<Style BasedOn="{x:Null}" TargetType="{x:Type wd:Window}">
1010
<Setter Property="Foreground" Value="{DynamicResource WD.RegularTextSolidColorBrush}" />
1111
<Setter Property="Background" Value="{DynamicResource WD.BackgroundSolidColorBrush}" />
12-
<Setter Property="BorderBrush" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
13-
<Setter Property="TitleBackground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
12+
<Setter Property="BorderBrush" Value="{DynamicResource WD.WindowBorderBrushSolidColorBrush}" />
13+
<Setter Property="TitleBackground" Value="{DynamicResource WD.WindowBorderBrushSolidColorBrush}" />
1414
<Setter Property="IsTabStop" Value="False" />
1515
<Setter Property="BorderThickness" Value="1" />
1616
<Setter Property="SnapsToDevicePixels" Value="True" />

src/WPFDevelopers.Net40/Themes/Theme.xaml

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -749,8 +749,8 @@
749749
<Style BasedOn="{x:Null}" TargetType="{x:Type wd:Window}">
750750
<Setter Property="Foreground" Value="{DynamicResource WD.RegularTextSolidColorBrush}" />
751751
<Setter Property="Background" Value="{DynamicResource WD.BackgroundSolidColorBrush}" />
752-
<Setter Property="BorderBrush" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
753-
<Setter Property="TitleBackground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
752+
<Setter Property="BorderBrush" Value="{DynamicResource WD.WindowBorderBrushSolidColorBrush}" />
753+
<Setter Property="TitleBackground" Value="{DynamicResource WD.WindowBorderBrushSolidColorBrush}" />
754754
<Setter Property="IsTabStop" Value="False" />
755755
<Setter Property="BorderThickness" Value="1" />
756756
<Setter Property="SnapsToDevicePixels" Value="True" />
@@ -1060,7 +1060,6 @@
10601060
<Trigger Property="IsChecked" Value="True">
10611061
<Setter TargetName="PART_Border" Property="Fill" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
10621062
<Setter TargetName="PART_Border" Property="Stroke" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
1063-
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
10641063
</Trigger>
10651064
<MultiTrigger>
10661065
<MultiTrigger.Conditions>
@@ -1690,7 +1689,6 @@
16901689
<Trigger Property="IsChecked" Value="True">
16911690
<Setter TargetName="PART_Border" Property="Background" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
16921691
<Setter TargetName="PART_Border" Property="BorderBrush" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
1693-
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
16941692
</Trigger>
16951693
<Trigger Property="IsChecked" Value="{x:Null}">
16961694
<Trigger.EnterActions>
@@ -2625,10 +2623,7 @@
26252623
<Setter Property="Template">
26262624
<Setter.Value>
26272625
<ControlTemplate TargetType="{x:Type DataGridRow}">
2628-
<Border x:Name="DGR_Border" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" SnapsToDevicePixels="True">
2629-
<Border.Background>
2630-
<SolidColorBrush Color="{Binding RelativeSource={RelativeSource AncestorType=DataGridRow}, Path=Background}" />
2631-
</Border.Background>
2626+
<Border x:Name="DGR_Border" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" SnapsToDevicePixels="True">
26322627
<SelectiveScrollingGrid>
26332628
<SelectiveScrollingGrid.ColumnDefinitions>
26342629
<ColumnDefinition Width="Auto" />
@@ -2840,7 +2835,7 @@
28402835
<ScaleTransform ScaleX="0" ScaleY="1" />
28412836
</Border.RenderTransform>
28422837
</Border>
2843-
<ContentPresenter Margin="{TemplateBinding Padding}" HorizontalAlignment="{Binding Path=HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" VerticalAlignment="{Binding Path=VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" ContentSource="Header" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
2838+
<ContentPresenter x:Name="PART_ContentPresenter" Margin="{TemplateBinding Padding}" HorizontalAlignment="{Binding Path=HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" VerticalAlignment="{Binding Path=VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" ContentSource="Header" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
28442839
<VisualStateManager.VisualStateGroups>
28452840
<VisualStateGroup x:Name="SelectionStates">
28462841
<VisualState x:Name="Unselected" />
@@ -2861,10 +2856,10 @@
28612856
<Trigger Property="IsSelected" Value="True">
28622857
<Setter TargetName="PART_Border" Property="BorderBrush" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
28632858
<Setter Property="Background" Value="{DynamicResource WD.DefaultBackgroundSolidColorBrush}" />
2864-
<Setter Property="Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
2859+
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
28652860
</Trigger>
28662861
<Trigger Property="IsMouseOver" Value="True">
2867-
<Setter Property="Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
2862+
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
28682863
</Trigger>
28692864
</ControlTemplate.Triggers>
28702865
</ControlTemplate>
@@ -2888,7 +2883,7 @@
28882883
<ScaleTransform ScaleX="1" ScaleY="0" />
28892884
</Border.RenderTransform>
28902885
</Border>
2891-
<ContentPresenter Margin="{TemplateBinding Padding}" HorizontalAlignment="{Binding Path=HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" VerticalAlignment="{Binding Path=VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" ContentSource="Header" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
2886+
<ContentPresenter x:Name="PART_ContentPresenter" Margin="{TemplateBinding Padding}" HorizontalAlignment="{Binding Path=HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" VerticalAlignment="{Binding Path=VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" ContentSource="Header" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
28922887
<VisualStateManager.VisualStateGroups>
28932888
<VisualStateGroup x:Name="SelectionStates">
28942889
<VisualState x:Name="Unselected" />
@@ -2909,10 +2904,10 @@
29092904
<Trigger Property="IsSelected" Value="True">
29102905
<Setter TargetName="PART_Border" Property="BorderBrush" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
29112906
<Setter Property="Background" Value="{DynamicResource WD.DefaultBackgroundSolidColorBrush}" />
2912-
<Setter Property="Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
2907+
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
29132908
</Trigger>
29142909
<Trigger Property="IsMouseOver" Value="True">
2915-
<Setter Property="Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
2910+
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
29162911
</Trigger>
29172912
</ControlTemplate.Triggers>
29182913
</ControlTemplate>
@@ -2956,7 +2951,7 @@
29562951
<Border x:Name="HeaderBorder" Grid.Row="0" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="0,0,0,1">
29572952
<TabPanel Name="HeaderPanel" Margin="2,2,2,0" Panel.ZIndex="1" IsItemsHost="True" KeyboardNavigation.TabIndex="1" />
29582953
</Border>
2959-
<controls:SmallPanel Name="ContentPanel" Grid.Row="1" Grid.Column="0" KeyboardNavigation.DirectionalNavigation="Contained" KeyboardNavigation.TabIndex="2" KeyboardNavigation.TabNavigation="Local">
2954+
<controls:SmallPanel x:Name="ContentPanel" Grid.Row="1" Grid.Column="0" KeyboardNavigation.DirectionalNavigation="Contained" KeyboardNavigation.TabIndex="2" KeyboardNavigation.TabNavigation="Local">
29602955
<ContentPresenter Name="PART_SelectedContentHost" Margin="{TemplateBinding Padding}" Content="{TemplateBinding SelectedContent}" ContentSource="SelectedContent" ContentStringFormat="{TemplateBinding SelectedContentStringFormat}" ContentTemplate="{TemplateBinding SelectedContentTemplate}" SnapsToDevicePixels="{TemplateBinding UIElement.SnapsToDevicePixels}" />
29612956
</controls:SmallPanel>
29622957
</Grid>
@@ -5700,7 +5695,7 @@
57005695
<ControlTemplate TargetType="{x:Type controls:StepItem}">
57015696
<StackPanel>
57025697
<controls:SmallPanel>
5703-
<Ellipse Width="45" Height="30" HorizontalAlignment="Center" Fill="{DynamicResource WD.WindowForegroundColorBrush}" />
5698+
<Ellipse Width="45" Height="30" HorizontalAlignment="Center" Fill="{DynamicResource WD.BackgroundSolidColorBrush}" />
57045699
<Border Width="30" Height="30" HorizontalAlignment="Center" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="15">
57055700
<controls:SmallPanel>
57065701
<TextBlock Name="PART_Index" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="{TemplateBinding FontSize}" Foreground="{TemplateBinding Foreground}" Text="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type controls:StepItem}}, Converter={StaticResource WD.StepIndexConverter}}" />

src/WPFDevelopers.Net45x/Themes/Generic.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
TargetType="{x:Type wd:Window}">
1212
<Setter Property="Foreground" Value="{DynamicResource WD.RegularTextSolidColorBrush}" />
1313
<Setter Property="Background" Value="{DynamicResource WD.BackgroundSolidColorBrush}" />
14-
<Setter Property="BorderBrush" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
15-
<Setter Property="TitleBackground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
14+
<Setter Property="BorderBrush" Value="{DynamicResource WD.WindowBorderBrushSolidColorBrush}" />
15+
<Setter Property="TitleBackground" Value="{DynamicResource WD.WindowBorderBrushSolidColorBrush}" />
1616
<Setter Property="BorderThickness" Value="1" />
1717
<Setter Property="IsTabStop" Value="False" />
1818
<Setter Property="SnapsToDevicePixels" Value="True" />

src/WPFDevelopers.Net45x/Themes/Theme.xaml

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -749,8 +749,8 @@
749749
<Style x:Key="WPFDevelopersWindow" BasedOn="{x:Null}" TargetType="{x:Type wd:Window}">
750750
<Setter Property="Foreground" Value="{DynamicResource WD.RegularTextSolidColorBrush}" />
751751
<Setter Property="Background" Value="{DynamicResource WD.BackgroundSolidColorBrush}" />
752-
<Setter Property="BorderBrush" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
753-
<Setter Property="TitleBackground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
752+
<Setter Property="BorderBrush" Value="{DynamicResource WD.WindowBorderBrushSolidColorBrush}" />
753+
<Setter Property="TitleBackground" Value="{DynamicResource WD.WindowBorderBrushSolidColorBrush}" />
754754
<Setter Property="BorderThickness" Value="1" />
755755
<Setter Property="IsTabStop" Value="False" />
756756
<Setter Property="SnapsToDevicePixels" Value="True" />
@@ -1061,7 +1061,6 @@
10611061
<Trigger Property="IsChecked" Value="True">
10621062
<Setter TargetName="PART_Border" Property="Fill" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
10631063
<Setter TargetName="PART_Border" Property="Stroke" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
1064-
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
10651064
</Trigger>
10661065
<MultiTrigger>
10671066
<MultiTrigger.Conditions>
@@ -1691,7 +1690,6 @@
16911690
<Trigger Property="IsChecked" Value="True">
16921691
<Setter TargetName="PART_Border" Property="Background" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
16931692
<Setter TargetName="PART_Border" Property="BorderBrush" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
1694-
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
16951693
</Trigger>
16961694
<Trigger Property="IsChecked" Value="{x:Null}">
16971695
<Trigger.EnterActions>
@@ -2626,10 +2624,7 @@
26262624
<Setter Property="Template">
26272625
<Setter.Value>
26282626
<ControlTemplate TargetType="{x:Type DataGridRow}">
2629-
<Border x:Name="DGR_Border" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" SnapsToDevicePixels="True">
2630-
<Border.Background>
2631-
<SolidColorBrush Color="{Binding RelativeSource={RelativeSource AncestorType=DataGridRow}, Path=Background}" />
2632-
</Border.Background>
2627+
<Border x:Name="DGR_Border" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" SnapsToDevicePixels="True">
26332628
<SelectiveScrollingGrid>
26342629
<SelectiveScrollingGrid.ColumnDefinitions>
26352630
<ColumnDefinition Width="Auto" />
@@ -2841,7 +2836,7 @@
28412836
<ScaleTransform ScaleX="0" ScaleY="1" />
28422837
</Border.RenderTransform>
28432838
</Border>
2844-
<ContentPresenter Margin="{TemplateBinding Padding}" HorizontalAlignment="{Binding Path=HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" VerticalAlignment="{Binding Path=VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" ContentSource="Header" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
2839+
<ContentPresenter x:Name="PART_ContentPresenter" Margin="{TemplateBinding Padding}" HorizontalAlignment="{Binding Path=HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" VerticalAlignment="{Binding Path=VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" ContentSource="Header" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
28452840
<VisualStateManager.VisualStateGroups>
28462841
<VisualStateGroup x:Name="SelectionStates">
28472842
<VisualState x:Name="Unselected" />
@@ -2862,10 +2857,10 @@
28622857
<Trigger Property="IsSelected" Value="True">
28632858
<Setter TargetName="PART_Border" Property="BorderBrush" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
28642859
<Setter Property="Background" Value="{DynamicResource WD.DefaultBackgroundSolidColorBrush}" />
2865-
<Setter Property="Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
2860+
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
28662861
</Trigger>
28672862
<Trigger Property="IsMouseOver" Value="True">
2868-
<Setter Property="Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
2863+
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
28692864
</Trigger>
28702865
</ControlTemplate.Triggers>
28712866
</ControlTemplate>
@@ -2889,7 +2884,7 @@
28892884
<ScaleTransform ScaleX="1" ScaleY="0" />
28902885
</Border.RenderTransform>
28912886
</Border>
2892-
<ContentPresenter Margin="{TemplateBinding Padding}" HorizontalAlignment="{Binding Path=HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" VerticalAlignment="{Binding Path=VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" ContentSource="Header" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
2887+
<ContentPresenter x:Name="PART_ContentPresenter" Margin="{TemplateBinding Padding}" HorizontalAlignment="{Binding Path=HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" VerticalAlignment="{Binding Path=VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" ContentSource="Header" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
28932888
<VisualStateManager.VisualStateGroups>
28942889
<VisualStateGroup x:Name="SelectionStates">
28952890
<VisualState x:Name="Unselected" />
@@ -2910,10 +2905,10 @@
29102905
<Trigger Property="IsSelected" Value="True">
29112906
<Setter TargetName="PART_Border" Property="BorderBrush" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
29122907
<Setter Property="Background" Value="{DynamicResource WD.DefaultBackgroundSolidColorBrush}" />
2913-
<Setter Property="Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
2908+
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
29142909
</Trigger>
29152910
<Trigger Property="IsMouseOver" Value="True">
2916-
<Setter Property="Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
2911+
<Setter TargetName="PART_ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource WD.PrimaryNormalSolidColorBrush}" />
29172912
</Trigger>
29182913
</ControlTemplate.Triggers>
29192914
</ControlTemplate>
@@ -2957,7 +2952,7 @@
29572952
<Border x:Name="HeaderBorder" Grid.Row="0" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="0,0,0,1">
29582953
<TabPanel Name="HeaderPanel" Margin="2,2,2,0" Panel.ZIndex="1" IsItemsHost="True" KeyboardNavigation.TabIndex="1" />
29592954
</Border>
2960-
<controls:SmallPanel Name="ContentPanel" Grid.Row="1" Grid.Column="0" KeyboardNavigation.DirectionalNavigation="Contained" KeyboardNavigation.TabIndex="2" KeyboardNavigation.TabNavigation="Local">
2955+
<controls:SmallPanel x:Name="ContentPanel" Grid.Row="1" Grid.Column="0" KeyboardNavigation.DirectionalNavigation="Contained" KeyboardNavigation.TabIndex="2" KeyboardNavigation.TabNavigation="Local">
29612956
<ContentPresenter Name="PART_SelectedContentHost" Margin="{TemplateBinding Padding}" Content="{TemplateBinding SelectedContent}" ContentSource="SelectedContent" ContentStringFormat="{TemplateBinding SelectedContentStringFormat}" ContentTemplate="{TemplateBinding SelectedContentTemplate}" SnapsToDevicePixels="{TemplateBinding UIElement.SnapsToDevicePixels}" />
29622957
</controls:SmallPanel>
29632958
</Grid>
@@ -5701,7 +5696,7 @@
57015696
<ControlTemplate TargetType="{x:Type controls:StepItem}">
57025697
<StackPanel>
57035698
<controls:SmallPanel>
5704-
<Ellipse Width="45" Height="30" HorizontalAlignment="Center" Fill="{DynamicResource WD.WindowForegroundColorBrush}" />
5699+
<Ellipse Width="45" Height="30" HorizontalAlignment="Center" Fill="{DynamicResource WD.BackgroundSolidColorBrush}" />
57055700
<Border Width="30" Height="30" HorizontalAlignment="Center" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="15">
57065701
<controls:SmallPanel>
57075702
<TextBlock Name="PART_Index" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="{TemplateBinding FontSize}" Foreground="{TemplateBinding Foreground}" Text="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type controls:StepItem}}, Converter={StaticResource WD.StepIndexConverter}}" />

src/WPFDevelopers.Net45x/WPFDevelopers.Net45x.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<AssemblyName>WPFDevelopers</AssemblyName>
44
<RootNamespace>WPFDevelopers</RootNamespace>
5-
<TargetFrameworks>net45;net46;net47;net48;net5.0-windows;net6.0-windows;netcoreapp3.0</TargetFrameworks>
5+
<TargetFrameworks>net45;net46;net47;net48;net5.0-windows;net6.0-windows;net7.0-windows;net8.0-windows;netcoreapp3.0</TargetFrameworks>
66
<UseWPF>true</UseWPF>
77
<UseWindowsForms>true</UseWindowsForms>
88
<PackageId>WPFDevelopers</PackageId>

0 commit comments

Comments
 (0)