Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. public Form1()
  2. {
  3. InitializeComponent();
  4. var pos = this.PointToScreen(this.label1.Location);
  5. pos = this.pictureBox7.PointToClient();
  6. this.label1.Parent = this.pictureBox7;
  7. this.label1.BackColor = Color.Transparent;
  8.  
  9. //button1.Parent = pictureBox7;
  10. //button1.BackColor = Color.Transparent;
  11.  
  12. this.groupBox1.Parent = this.pictureBox7;
  13. this.groupBox1.BackColor = Color.Transparent;
  14. this.groupBox4.Parent = this.pictureBox7;
  15. this.groupBox4.BackColor = Color.Transparent;
  16.  
  17. //groupBox6.Parent = pictureBox7;
  18. //groupBox6.BackColor = Color.Transparent;
  19. /*textBox1.Parent = pictureBox7;
  20. textBox1.BackColor = Color.Transparent;
  21. textBox2.Parent = pictureBox7;
  22. textBox2.BackColor = Color.Transparent;
  23. textBox3.Parent = pictureBox7;
  24. textBox3.BackColor = Color.Transparent;
  25. textBox4.Parent = pictureBox7;
  26. textBox4.BackColor = Color.Transparent;
  27. textBox5.Parent = pictureBox7;
  28. textBox5.BackColor = Color.Transparent;
  29. textBox6.Parent = pictureBox7;
  30. textBox6.BackColor = Color.Transparent;*/
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement