In This Article

PixelSnapper Class

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

public class PixelSnapper : Decorator, DUCE.IResource, IAnimatable, IFrameworkInputElement, IInputElement, ISupportInitialize, IHaveResources, IQueryAmbient, IAddChild
Inheritance:
System.Object System.Windows.Threading.DispatcherObject System.Windows.DependencyObject System.Windows.Media.Visual System.Windows.UIElement System.Windows.FrameworkElement System.Windows.Controls.Decorator Object

Constructors

PixelSnapper()

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 System.Windows.FrameworkElement-derived class.

protected override Size MeasureOverride(Size constraint)
Parameter Type Description
constraint System.Windows.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

System.Windows.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

Inherited Members

  • System.Object.ToString()
  • System.Object.Equals(System.Object)
  • System.Object.Equals(System.Object, System.Object)
  • System.Object.ReferenceEquals(System.Object, System.Object)
  • System.Object.GetHashCode()
  • System.Object.GetType()
  • System.Object.MemberwiseClone()

Extension Methods