نقل قول نوشته شده توسط taghvajou مشاهده تاپیک
سلام
یه کلاس فرم درست کنین که از فرم ویندوز ارث ببره و ویژگی (های) مورد نظر رو داخل ست کنین (مثال پایین)



public partial class FormExtd : Form
{
public FormExtd()
: base()
{
this.SuspendLayout();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(600, 450);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MinimizeBox = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScree n;
this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.RightToLeftLayout = true;
this.Icon = Images.CRM;
this.ResumeLayout(false);
}
}





نهایتا تو فرمهای دیگه به جای ارث بری از کلاس فرم اصلی، از این کلاس ارث بدین:
 public partial class ReportForm : FormExtd
{
public ReportForm()
{
InitializeComponent();
}
}

ممنون،بررسی میکنم