Here is the sample code
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmMain));
this.panel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
this.panel1.Location = new Point(140, -2);
this.panel1.Margin = new System.Windows.Forms.Padding(0);
this.panel1.Paint += new PaintEventHandler(this.panel1_Paint);
this.pictureBox2.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
this.pictureBox2.BackColor = Color.Transparent;
this.pictureBox2.BackgroundImageLayout = ImageLayout.Stretch;
this.pictureBox2.Image = (Image)componentResourceManager.GetObject("pictureBox2.Image");
this.pictureBox2.Location = new Point(753, 10);
This error comes when i go into designer mode in visual studio 2015 but when i run the application it run well
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmMain));
this.panel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
this.panel1.Location = new Point(140, -2);
this.panel1.Margin = new System.Windows.Forms.Padding(0);
this.panel1.Paint += new PaintEventHandler(this.panel1_Paint);
this.pictureBox2.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
this.pictureBox2.BackColor = Color.Transparent;
this.pictureBox2.BackgroundImageLayout = ImageLayout.Stretch;
this.pictureBox2.Image = (Image)componentResourceManager.GetObject("pictureBox2.Image");
this.pictureBox2.Location = new Point(753, 10);
This error comes when i go into designer mode in visual studio 2015 but when i run the application it run well