Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

MRUEdit() Constructor

In This Article

Initializes a new MRUEdit class instance with default settings.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public MRUEdit()

#Remarks

Use this constructor to create a new instance of the MRUEdit control at runtime. The constructor initializes the new editor with default settings.

You can use members of the new editor to modify it as required: you can specify its name, the number of items it can maintain, control the editor’s look and feel, enable the auto-completion feature, etc. The new editor should be added to a parent container’s Controls collection in order for it to be displayed on the form.

To create an editor to work inplace within an XtraGrid, for instance, you should create a RepositoryItemMRUEdit repository item and assign it to a column.

See Also