Advertisement
wingman007

C#_WinForms_MDI

Jan 24th, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.91 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10.  
  11. namespace MDI_zad2
  12. {
  13.     public partial class Form1 : Form
  14.     {
  15.         public Form1()
  16.         {
  17.             InitializeComponent();
  18.         }
  19.  
  20.         private void saveToolStripMenuItem_Click(object sender, EventArgs e)
  21.         {
  22.             MessageBox.Show("I have to save");
  23.         }
  24.  
  25.         private void newToolStripMenuItem_Click(object sender, EventArgs e)
  26.         {
  27.             Form2 childForm = new Form2();
  28.             childForm.MdiParent = this;
  29.  
  30.             // random background color
  31.             Random randonGen = new Random();
  32.             Color randomColor = Color.FromArgb(randonGen.Next(255), randonGen.Next(255),randonGen.Next(255));
  33.             childForm.BackColor = randomColor;
  34.  
  35.             // add a button
  36.             Button btnAdd = new Button();
  37.             btnAdd.Location = new Point(randonGen.Next(255), randonGen.Next(255));
  38.             childForm.Controls.Add(btnAdd);
  39.  
  40.             // label with random background color
  41.             Label lblAdd = new Label();
  42.             lblAdd.BackColor = Color.FromArgb(randonGen.Next(255), randonGen.Next(255), randonGen.Next(255));
  43.             lblAdd.Text = "I am a label";
  44.             childForm.Controls.Add(lblAdd);
  45.  
  46.             childForm.Show();
  47.         }
  48.  
  49.         private void graphicsToolStripMenuItem_Click(object sender, EventArgs e)
  50.         {
  51.             Form3 childForm = new Form3();
  52.             childForm.MdiParent = this;
  53.             childForm.Show();
  54.         }
  55.  
  56.         private void Form1_Load(object sender, EventArgs e)
  57.         {
  58.  
  59.         }
  60.  
  61.         private void openToolStripMenuItem_Click(object sender, EventArgs e)
  62.         {
  63.             MessageBox.Show("I have to open");
  64.         }
  65.     }
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement