syncfusion/wpf-ui-components-skills

syncfusion-wpf-chromeless-window

Implements the Syncfusion WPF ChromelessWindow for custom window chrome and title bar customization.

First seen Mar 26, 2026

Installation

$ npx skills add syncfusion/wpf-ui-components-skills --skill syncfusion-wpf-chromeless-window

Summary

  • Implements the Syncfusion WPF ChromelessWindow for custom window chrome and title bar customization.
  • Use this when creating custom window designs, customizing title bars, or implementing borderless windows in WPF applications.
  • Covers title bar customization, background styling, border radius, custom buttons, and native chrome integration.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from syncfusion/wpf-ui-components-skills · top by installs.

npx skills add syncfusion/wpf-ui-components-skills

Browse all from syncfusion/wpf-ui-components-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 5
Default branch master
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version34.1.29
More metadata
author
Syncfusion Inc
version
34.1.29

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,105 B
  • docs SUMMARY.md 380 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 120 installs

SKILL.md

Implementing Chromeless Window

This skill explains how to implement and customize the Syncfusion WPF ChromelessWindow.

When to Use This Skill

  • Use when the user needs a frameless/chromeless WPF window with a customizable title bar.
  • Use when customizing titlebar background, height, font, icon, or alignment.
  • Use when adding controls or custom buttons to the title bar (left/right).
  • Use when changing borders, corner radius, resize behavior, or theme integration.
  • Use when the user needs UseNativeChrome behavior for window docking.

Navigation Guide

Follow the links below to open focused reference pages for each task.

Getting started

📄 Read: [references/getting-started.md](references/getting-started.md)

  • Add ChromelessWindow to a project, basic properties and quick examples.

Overview

📄 Read: [references/overview.md](references/overview.md)

  • High-level features and supported scenarios.

Title bar customization

📄 Read: [references/titlebar-customization.md](references/titlebar-customization.md)

  • Background, height, font, visibility, maximize/minimize buttons.

Title bar custom buttons & controls

📄 Read: [references/titlebar-custom-buttons.md](references/titlebar-custom-buttons.md) 📄 Read: [references/adding-controls.md](references/adding-controls.md)

  • Add custom buttons or adaptive controls (Left/Right header items).

Styling & Templates

📄 Read: [references/styling.md](references/styling.md)

  • Templates for TitleBar, TitleButton, overriding default styles.

Border & Corner Radius

📄 Read: [references/border-customization.md](references/border-customization.md) 📄 Read: [references/corner-radius.md](references/corner-radius.md)

  • Resize border color, thickness, corner radius examples.

Visual structure & themes

📄 Read: [references/visual-structure.md](references/visual-structure.md) 📄 Read: [references/set-visual-styles.md](references/set-visual-styles.md)

  • Visual element layout and theme application guidance.

Native chrome / docking

📄 Read: [references/use-native-chrome.md](references/use-native-chrome.md)

  • UseNativeChrome behavior and notes for docking.

End-user capabilities

📄 Read: [references/end-user-capabilities.md](references/end-user-capabilities.md)

  • What end users can do (maximize, minimize, restore, resize).

Quick Start

Minimal ChromelessWindow example (XAML):

<syncfusion:ChromelessWindow x:Class="Chromelesswindow.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:syncfusion="clr-namespace:Syncfusion.Windows.Shared;assembly=Syncfusion.Shared.WPF"
    Title="ChromelessWindow Sample" Height="350" Width="525"
    TitleBarBackground="#FF2D2D2D" TitleFontSize="14" TitleBarHeight="36">
    <Grid>
        <!-- App content here -->
    </Grid>
</syncfusion:ChromelessWindow>

Common Patterns

  • Add custom left/right titlebar items with LeftHeaderItemsSource / RightHeaderItemsSource.
  • Use TitleBarTemplate / TitleButtonTemplate to fully customize visuals.
  • Override default style in App.xaml when modifying many template parts.

Troubleshooting

  • If maximize/minimize buttons don't appear, check ResizeMode and ShowMaximizeButton/ShowMinimizeButton.
  • For drag-to-move to work, ensure a TitleBar named PART_TitleBar is present in the template.
  • If resizing is hard, increase ResizeBorderThickness.
  • When custom templates are not applied, verify resources are included in App.xaml and keys match.