CustomizedTitleBar 1.0.10

dotnet add package CustomizedTitleBar --version 1.0.10                
NuGet\Install-Package CustomizedTitleBar -Version 1.0.10                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CustomizedTitleBar" Version="1.0.10" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CustomizedTitleBar --version 1.0.10                
#r "nuget: CustomizedTitleBar, 1.0.10"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CustomizedTitleBar as a Cake Addin
#addin nuget:?package=CustomizedTitleBar&version=1.0.10

// Install CustomizedTitleBar as a Cake Tool
#tool nuget:?package=CustomizedTitleBar&version=1.0.10                

Getting tired of finding a solution to customize your title bar? No idea about how to set he background color of the titlebar? well you gotta try this UserControl!

well first you gotta import this nuget into your project, and then you gotta give your window a name, which will be used in later process , like this piece of code:

<Window x:Class="MainWindow"
        x:Name="ThisWindow"
        ...
        >

and then set this UserControl at the top of your Main Grid, you can also edit its several features by setting just like this:

<customizedTitleBar:CustomizedTitileBar_UserControl Margin="0,0,0,-1"
                HostWindow="{Binding ElementName = ThisWindow}"
                Background="#FF24292E"
                Foreground="White"
                BorderThickness="1"
                BorderBrush="Black"               
            />

DO remember using "Binding" to bind the name of your window, "ThisWindow" in this case, to the "HostWindow" property by useing the "ElementName" feature.

You are good to go!

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.10 244 11/28/2023
1.0.9 76 11/28/2023
1.0.8 72 11/27/2023
1.0.0 129 10/17/2023