Skip to main content
All docs
V25.1
  • TileControl.LayoutUpgrade Event

    Occurs after a layout whose version doesn’t match the current layout version has been loaded from a stream, xml file or system registry.

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.XtraEditors.v25.1.dll

    NuGet Package: DevExpress.Win.Navigation

    Declaration

    [DXCategory("Behavior")]
    public event LayoutUpgradeEventHandler LayoutUpgrade

    Event Data

    The LayoutUpgrade event's data class is LayoutUpgradeEventArgs. The following properties provide information specific to this event:

    Property Description
    NewHiddenItems Returns an array of items that exist in the current control but do not exist in the layout being loaded. These items are hidden. This property is in effect for the LayoutControl.
    PreviousVersion Returns the textual representation of the previous layout version.

    Remarks

    The LayoutUpgrade event allows you to customize the current layout after another version of the layout has been loaded and applied to the TileControl. Use the TileControl.OptionsLayout.LayoutVersion property to specify the layout version. See Save and Restore Layouts of DevExpress controls for more information.

    See Also