BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<Syncfusion:SfDataGrid x:Name="SfdataGrid"
AllowEditing="True"
SelectionMode="Multiple"
AllowGrouping="True"
AllowResizingColumns="False"
ShowGroupDropArea="True"
AutoGenerateColumns="False"
AllowFiltering="True"
AllowSorting="True"
/>
<Syncfusion:GridTextColumn MappingName="EmployeeName" AllowResizing="False" />
|
this.treeGrid.Loaded += treeGrid_Loaded;
void treeGrid_Loaded(object sender, RoutedEventArgs e)
{
this.treeGrid.InternalGrid.ResizingColumns += InternalGrid_ResizingColumns;
}
void InternalGrid_ResizingColumns(object sender, GridResizingColumnsEventArgs args)
{
args.AllowResize = false;
} |