To reproduce: private void Form1_Load(object sender, EventArgs e) { this.order_DetailsTableAdapter.Fill(this.nwindDataSet.Order_Details); this.radGridView1.DataSource = this.orderDetailsBindingSource; this.radGridView1.EnablePaging = true; this.radGridView1.AutoSizeRows = true; } private void radButton1_Click(object sender, EventArgs e) { this.radGridView1.PrintStyle.PrintAllPages = true; this.radGridView1.PrintPreview(); } Workaround: refresh the MasterTemplate after the PrintPreview dialog is closed: this.radGridView1.PrintPreview(); this.radGridView1.MasterTemplate.Refresh();