Hello,
If I understand correctly, then I haven't been able to replicate your issue. Please have a go with the following code in a new project.
Form Code
Designer Code
namespace RadControlsWinFormsApp1
{
partial class RadForm1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.radPageView1 = new Telerik.WinControls.UI.RadPageView();
this.radButton1 = new Telerik.WinControls.UI.RadButton();
((System.ComponentModel.ISupportInitialize)(this.radPageView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
this.SuspendLayout();
//
// radPageView1
//
this.radPageView1.Location = new System.Drawing.Point(12, 12);
this.radPageView1.Name = "radPageView1";
this.radPageView1.Size = new System.Drawing.Size(451, 233);
this.radPageView1.TabIndex = 0;
this.radPageView1.Text = "radPageView1";
((Telerik.WinControls.UI.RadPageViewStripElement)(this.radPageView1.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
((Telerik.WinControls.UI.RadPageViewStripElement)(this.radPageView1.GetChildAt(0))).ItemFitMode = Telerik.WinControls.UI.StripViewItemFitMode.Fill;
//
// radButton1
//
this.radButton1.Location = new System.Drawing.Point(322, 251);
this.radButton1.Name = "radButton1";
this.radButton1.Size = new System.Drawing.Size(130, 24);
this.radButton1.TabIndex = 1;
this.radButton1.Text = "Copy Page";
this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
//
// RadForm1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(475, 280);
this.Controls.Add(this.radButton1);
this.Controls.Add(this.radPageView1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "RadForm1";
//
//
//
this.RootElement.ApplyShapeToControl = true;
this.Text = "RadForm1";
this.ThemeName = "ControlDefault";
this.Load += new System.EventHandler(this.RadForm1_Load);
((System.ComponentModel.ISupportInitialize)(this.radPageView1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
this.ResumeLayout(false);
}
#endregion
private Telerik.WinControls.UI.RadPageView radPageView1;
private Telerik.WinControls.UI.RadButton radButton1;
}
}
Hope that helps
Richard