Preview:
private void btn_SortData_ItemClick(object sender, ItemClickEventArgs e) {
    GridColumn colProject = gridView.Columns["ProjectID"];
    GridColumn colStatus = gridView.Columns["Status"];
    gridView.BeginSort();
    try {
        gridView.ClearSorting();
        colProject.SortOrder = ColumnSortOrder.Ascending;
        colStatus.SortOrder = ColumnSortOrder.Ascending;
    }
    finally {
        gridView.EndSort();
    }
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter