In This Article

PixelSnapper Class

Represents a Decorator that measures its contents at integer intervals to help with pixel snapping.

public class PixelSnapper : Decorator
Inheritance:
object Visual UIElement FrameworkElement Decorator object

Constructors

PixelSnapper()

Initializes an instance of the class.

public PixelSnapper()

Properties

HorizontalRoundMode

Gets or sets a RoundMode indicating how to round the horizontal measurement of the child content. This is a dependency property.

public RoundMode HorizontalRoundMode { get; set; }

Property Value

RoundMode:

A RoundMode indicating how to round the horizontal measurement of the child content. The default value is RoundMode.Ceiling.

VerticalRoundMode

Gets or sets a RoundMode indicating how to round the vertical measurement of the child content. This is a dependency property.

public RoundMode VerticalRoundMode { get; set; }

Property Value

RoundMode:

A RoundMode indicating how to round the vertical measurement of the child content. The default value is RoundMode.Ceiling.

Methods

MeasureOverride(Size)

When overridden in a derived class, measures the size in layout required for child elements and determines a size for the FrameworkElement-derived class.

protected override Size MeasureOverride(Size constraint)
Parameter Type Description
constraint Size

The available size that this element can give to child elements. Infinity can be specified as a value to indicate that the element will size to whatever content is available.

Returns

Size:

The size that this element determines it needs during layout, based on its calculations of child element sizes.

Fields

HorizontalRoundModeProperty

Identifies the HorizontalRoundMode dependency property. This field is read-only.

public static readonly DependencyProperty HorizontalRoundModeProperty

VerticalRoundModeProperty

Identifies the VerticalRoundMode dependency property. This field is read-only.

public static readonly DependencyProperty VerticalRoundModeProperty