{"id":15163443,"url":"https://github.com/fatrainbowpony/dock-window","last_synced_at":"2025-04-11T01:21:52.858Z","repository":{"id":252359483,"uuid":"840204510","full_name":"FatRainbowPony/Dock-Window","owner":"FatRainbowPony","description":"Dock window implementation of WPF","archived":false,"fork":false,"pushed_at":"2024-10-07T05:09:25.000Z","size":6562,"stargazers_count":5,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-24T22:25:41.343Z","etag":null,"topics":["application-desktop-toolbars","csharp","dock-window","dotnet","windows","wpf"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FatRainbowPony.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-09T07:33:40.000Z","updated_at":"2024-12-27T06:43:40.000Z","dependencies_parsed_at":"2024-12-15T18:00:55.705Z","dependency_job_id":null,"html_url":"https://github.com/FatRainbowPony/Dock-Window","commit_stats":{"total_commits":85,"total_committers":1,"mean_commits":85.0,"dds":0.0,"last_synced_commit":"55ffd4d1f304e1f5a1037ac0fb1e1a0add5c4873"},"previous_names":["fatrainbowpony/dock-window"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FatRainbowPony%2FDock-Window","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FatRainbowPony%2FDock-Window/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FatRainbowPony%2FDock-Window/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FatRainbowPony%2FDock-Window/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FatRainbowPony","download_url":"https://codeload.github.com/FatRainbowPony/Dock-Window/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248323416,"owners_count":21084498,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["application-desktop-toolbars","csharp","dock-window","dotnet","windows","wpf"],"created_at":"2024-09-27T02:42:16.816Z","updated_at":"2025-04-11T01:21:52.840Z","avatar_url":"https://github.com/FatRainbowPony.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"Center\"\u003e\n    \u003cimg\n        src=\"https://github.com/FatRainbowPony/Dock-Window/blob/main/img/DockWindow.svg\"\n        alt=\"DockWindow\" \n        width=\"200\" \n        height=\"170\"\u003e\n\u003c/div\u003e\n\n# Dock Window\n[![Nuget](https://img.shields.io/nuget/v/DockWindow)](https://www.nuget.org/packages/DockWindow)\n[![Downloads](https://img.shields.io/nuget/dt/DockWindow)](https://www.nuget.org/packages/DockWindow) \n\nDock window implementation of WPF base off [Using Application Desktop Toolbars](https://learn.microsoft.com/en-us/windows/win32/shell/application-desktop-toolbars)\n\n ## Features\n- Docking to any edge and monitor \n- Supporting automatic hiding\n- Cooperating with other desktop toolbars\n\n## Usage\nInstall the NuGet package. Then create a WPF window and select the `DockWindow` class instead of the `Window` class. Needs to done  both in XAML and code\n\n- XAML\n```xml\n\u003cdw:DockWindow \n    x:Class=\"DockWindowDemo.MainWindow\"\n    xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\"\n    xmlns:d=\"http://schemas.microsoft.com/expression/blend/2008\"\n    xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n    xmlns:dw=\"clr-namespace:DockWindow.Windows;assembly=DockWindow\"\n    mc:Ignorable=\"d\"\n    Title=\"MainWindow\" \n    Background=\"Transparent\"\n    BorderBrush=\"Transparent\"\n    BorderThickness=\"0\"\n    AllowsTransparency=\"True\"\n    DockWidthOrHeight=\"150\"\n    AnimationBackground=\"White\"\u003e\n    \u003cGrid\u003e\n    \u003c/Grid\u003e\n\u003c/dw:DockWindow\u003e\n```\n\n- Code\n```csharp\nnamespace DockWindowDemo\n{\n    public partial class MainWindow : DockWindow.Windows.DockWindow\n    {\n        public MainWindow()\n        {\n            InitializeComponent();\n        }\n    }\n}\n```\n\nYou can see [DockWindowDemo](https://github.com/FatRainbowPony/Dock-Window/tree/main/src/DockWindowDemo) for an example project\n\n\u003cimg src=\"https://github.com/FatRainbowPony/Dock-Window/blob/main/img/DockWindowDemo.gif\" width=\"600\" height=\"338\"/\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffatrainbowpony%2Fdock-window","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffatrainbowpony%2Fdock-window","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffatrainbowpony%2Fdock-window/lists"}