Skip to content

Commit

Permalink
Fix #29
Browse files Browse the repository at this point in the history
Default theme now is consistent with default WPF theme.
  • Loading branch information
quicoli committed Jan 31, 2022
1 parent 5fc5932 commit f03ce18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<TargetFrameworks>net452;net472;netcoreapp3.1;net5.0-windows;net6.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<Version>1.3.0.0</Version>
<Version>1.3.1.0</Version>
<PackageProjectUrl>https://github.com/quicoli/WPF-AutoComplete-TextBox</PackageProjectUrl>
<RepositoryType />
<RepositoryUrl>https://github.com/quicoli/WPF-AutoComplete-TextBox</RepositoryUrl>
Expand All @@ -13,7 +13,7 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<ApplicationIcon>AutoCompleteTextBox.ico</ApplicationIcon>
<PackageReleaseNotes>
Fix for issue #49, #43, #37. Added suport to .NET 6.
Fix for issue #29.
</PackageReleaseNotes>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<Style TargetType="{x:Type editors:AutoCompleteTextBox}">
<Setter Property="Focusable" Value="False" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="BorderBrush" Value="#FFABADB3" />
<Setter Property="SuggestionBackground" Value="White" />
<Setter Property="HorizontalContentAlignment" Value="Left" />
<Setter Property="VerticalContentAlignment" Value="Top" />
Expand All @@ -65,7 +65,7 @@
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
CornerRadius="3">
CornerRadius="0">
<Grid>
<DockPanel>
<ContentPresenter
Expand Down

0 comments on commit f03ce18

Please sign in to comment.