thnx for a quick and good solution
>This is by design.
>
>If you do not want this behavior, then you can handle the ResizingCols event and cancel it if it is a doubleclick.
>
>
>private void gridControl1_ResizingColumns(object sender, GridResizingColumnsEventArgs e)
>{
> if(e.Reason == GridResizeCellsReason.DoubleClick)
> e.Cancel = true;
>}
>