Skip to content

Commit

Permalink
Added TitleBar control
Browse files Browse the repository at this point in the history
  • Loading branch information
Morten Nielsen committed Sep 11, 2024
1 parent ea41e17 commit 2559c5e
Show file tree
Hide file tree
Showing 13 changed files with 1,380 additions and 20 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Watch WinUIEx covered in the On .NET Live show:
- [Splash Screens](https://dotmorten.github.io/WinUIEx/concepts/Splashscreen.html)
- [OAuth Web Authentication](https://dotmorten.github.io/WinUIEx/concepts/WebAuthenticator.html)
- [Custom Window Backdrops](https://dotmorten.github.io/WinUIEx/concepts/CustomBackdrops.html)
- TitleBar control
- Code analyzers for Windows App SDK APIs to guide the developer.


Expand Down
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ A set of extension methods and classes to fill some gaps in WinUI 3, mostly arou
- [Splash screen](concepts/Splashscreen.md)
- [OAuth Web Authenticator](concepts/WebAuthenticator.md)
- [Custom Backdrops](concepts/CustomBackdrops.md)
- TitleBar


And more to come...
Expand Down
4 changes: 2 additions & 2 deletions src/Dependencies.targets
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>

<PropertyGroup>
<WinAppSDKVersion>1.4.230822000</WinAppSDKVersion>
<WinAppSDKToolsVersion>10.0.22621.1</WinAppSDKToolsVersion>
<WinAppSDKVersion>1.5.240227000</WinAppSDKVersion>
<WinAppSDKToolsVersion>10.0.22621.756</WinAppSDKToolsVersion>
</PropertyGroup>

</Project>
4 changes: 2 additions & 2 deletions src/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<Authors>Morten Nielsen - https://xaml.dev</Authors>
<Company>Morten Nielsen - https://xaml.dev</Company>
<PackageIcon>logo.png</PackageIcon>
<Version>2.3.4</Version>
<PackageValidationBaselineVersion>2.3.3</PackageValidationBaselineVersion>
<Version>2.4.0</Version>
<PackageValidationBaselineVersion>2.3.4</PackageValidationBaselineVersion>
</PropertyGroup>

<ItemGroup Condition="'$(PackageId)'!=''">
Expand Down
9 changes: 9 additions & 0 deletions src/WinUIEx/Themes/Generic.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WinUIEx">

<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="ms-appx:///WinUIEx/TitleBar/TitleBar.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
Loading

0 comments on commit 2559c5e

Please sign in to comment.