Table of Contents

Class ClientAreaBorder

Namespace
Wpf.Ui.Controls
Assembly
Wpf.Ui.dll

If you use WindowChrome to extend the UI elements to the non-client area, you can include this container in the template of Window so that the content inside automatically fills the client area. Using this container can let you get rid of various margin adaptations done in Setter/Trigger of the style of Window when the window state changes.

public class ClientAreaBorder : Border, IAnimatable, IFrameworkInputElement, IInputElement, ISupportInitialize, IQueryAmbient, IAddChild, IThemeControl
Inheritance
ClientAreaBorder
Implements
Inherited Members

Examples

<Style
    x:Key="MyWindowCustomStyle"
    BasedOn="{StaticResource {x:Type Window}}"
    TargetType="{x:Type controls:FluentWindow}">
    <Setter Property="Template" >
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type Window}">
                <AdornerDecorator>
                    <controls:ClientAreaBorder
                        Background="{TemplateBinding Background}"
                        BorderBrush="{TemplateBinding BorderBrush}"
                        BorderThickness="{TemplateBinding BorderThickness}">
                        <ContentPresenter x:Name="ContentPresenter" />
                    </controls:ClientAreaBorder>
                </AdornerDecorator>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

Constructors

ClientAreaBorder()

public ClientAreaBorder()

Properties

ApplicationTheme

Gets the theme that is currently set.

public ApplicationTheme ApplicationTheme { get; set; }

Property Value

ApplicationTheme

PaddedBorderThickness

Gets the system value for the padded border thickness (CXPADDEDBORDER) in WPF units.

public Thickness PaddedBorderThickness { get; }

Property Value

Thickness

ResizeFrameBorderThickness

Gets the system CXFRAME and CYFRAME values in WPF units.

public static Thickness ResizeFrameBorderThickness { get; }

Property Value

Thickness

WindowChromeNonClientFrameThickness

Gets the thickness of the window's non-client frame used for maximizing the window with a custom chrome.

public Thickness WindowChromeNonClientFrameThickness { get; }

Property Value

Thickness

Remarks

If you use a WindowChrome to extend the client area of a window to the non-client area, you need to handle the edge margin issue when the window is maximized. Use this property to get the correct margin value when the window is maximized, so that when the window is maximized, the client area can completely cover the screen client area by no less than a single pixel at any DPI. TheGetSystemMetrics(SM) method cannot obtain this value directly.

Methods

OnVisualParentChanged(DependencyObject)

Invoked when the parent of this element in the visual tree is changed. Overrides OnVisualParentChanged(DependencyObject).

protected override void OnVisualParentChanged(DependencyObject oldParent)

Parameters

oldParent DependencyObject

The old parent element. May be null to indicate that the element did not have a visual parent previously.