Form2.cs 472 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace HelloAppp
  9. {
  10. public partial class Form2 : Form
  11. {
  12. public Form2()
  13. {
  14. InitializeComponent();
  15. }
  16. private Form2(Form1 f)
  17. {
  18. InitializeComponent();
  19. f.BackColor = Color.Yellow;
  20. }
  21. }
  22. }