首页 > 解决方案 > 如何在 blazor 的 dxdatagrid 列中添加向下箭头

问题描述

代码

如何在 blazor 的 dxdatagrid 列中添加向下箭头

<DxDataGrid DataAsync="@ProductServices.ProductList" PageSize="5" ShowFilterRow="false" 
        RowInsertingAsync="@OnRowInserting"
        RowUpdatingAsync="@OnRowUpdating"
        RowRemovingAsync="@OnRowRemoving">
<DxDataGridCommandColumn Width="150px"></DxDataGridCommandColumn>
<DxDataGridColumn Field="@nameof(Product.ProductId)" Caption="ID" Width="150px"></DxDataGridColumn>
<DxDataGridColumn Field="@nameof(Product.ProductName)" Caption="Name" Width="150px"></DxDataGridColumn>
<DxDataGridColumn Field="@nameof(Product.ProdQty)" Caption="Qty" Width="150px"></DxDataGridColumn>
<DxDataGridColumn Field="@nameof(Product.Price)" Caption="Price" Width="150px"></DxDataGridColumn>

在此处输入图像描述

如何在 blazor 的 dxdatagrid 列中添加向下箭头?

标签: blazorblazor-server-sideblazor-client-sideblazor-webassemblyasp.net-blazor

解决方案


推荐阅读