FileManagerSettingsContextMenu.Items Property
Gets a collection of context menu items.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public FileManagerToolbarItemCollection Items { get; }
#Property Value
Type | Description |
---|---|
File |
A File |
#Property Paths
You can access this nested property as listed below:
Library | Object Type | Path to Items |
---|---|---|
ASP. |
File |
|
ASP. |
ASPx |
|
#Remarks
The file manager provides the context menu if the FileManagerSettingsContextMenu.Enabled property is set to true
. Use the Items property to customize the context menu items. If the item collection is empty, the context menu displays default items.
Use the ASPxFileManager.StylesContextMenu property to customize the context menu appearance.
#Concept
#Example
Web Forms (in markup):
<dx:ASPxFileManager ID="FileManager" ClientInstanceName="FileManager" runat="server" >
<SettingsContextMenu Enabled="true">
<Items>
<dx:FileManagerToolbarMoveButton />
<dx:FileManagerToolbarCustomButton Text="Properties" CommandName="Properties" BeginGroup="true">
<Image IconID="setup_properties_16x16" />
</dx:FileManagerToolbarCustomButton>
</Items>
</SettingsContextMenu>
...
</dx:ASPxFileManager>
Web Forms (in code):
ASPxFileManager fm = new ASPxFileManager();
...
FileManagerToolbarMoveButton moveButton = new FileManagerToolbarMoveButton();
moveButton.BeginGroup = false;
FileManagerToolbarCustomButton customButton = new FileManagerToolbarCustomButton();
customButton.CommandName = "Properties";
customButton.BeginGroup = true;
customButton.Image.IconID = "setup_properties_16x16";
FileManager.SettingsContextMenu.Items.Add(moveButton);
FileManager.SettingsContextMenu.Items.Add(customButton);
...
MVC:
@Html.DevExpress().FileManager( settings => {
settings.Name = "fileManager";
FileManagerToolbarMoveButton moveButton = new FileManagerToolbarMoveButton();
moveButton.BeginGroup = false;
FileManagerToolbarCustomButton customButton = new FileManagerToolbarCustomButton();
customButton.CommandName = "Properties";
customButton.BeginGroup = true;
customButton.Image.IconID = "setup_properties_16x16";
settings.SettingsContextMenu.Items.Add(moveButton);
settings.SettingsContextMenu.Items.Add(customButton);
...
}).BindToFolder(Model).GetHtml()