Skip to main content
A newer version of this page is available. .

CardView.MinFixedSize Property

Gets or sets the minimum width (or height if cards are arranged in columns) of cards. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public double MinFixedSize { get; set; }

Property Value

Type Description
Double

A Double value that specifies the minimum size of cards.

Remarks

By default, a card’s size (its width or height depending on the layout) is automatically calculated to display its content in the optimal way. As a result, different cards can have different sizes. To avoid this, and specify the same size for all cards displayed within a view, use the CardView.FixedSize property. The MinFixedSize property specifies the minimum size to which cards can be resized by an end-user, or in code.

If the MinFixedSize property is specified, the CardView.FixedSize property cannot be set to a value less than the MinFixedSize property’s value.

To learn more, see Card View.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the MinFixedSize property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also