24 Ocak 2016 Pazar

c# açık olan formların ismi

  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.Windows.Forms;  
  9. using System.Data.SqlClient;  
  10. namespace WindowsFormsApplication1  
  11. {  
  12.     public partial class Form3 : Form  
  13.     {  
  14.         public Form3()  
  15.         {  
  16.             InitializeComponent();  
  17.         }  
  18.   
  19.         private void Form3_Load(object sender, EventArgs e)  
  20.         {  
  21.             label3.Text = Application.OpenForms.Count.ToString();  
  22.             foreach (Form frm in Application.OpenForms)  
  23.             {  
  24.                 label1.Text = frm.Name;  
  25.             }  
  26.         }  
  27.   
  28.         private void button1_Click(object sender, EventArgs e)  
  29.         {  
  30.             Form1 frm1 = new Form1();  
  31.             frm1.Show();  
  32.         }  
  33.   
  34.         private void button2_Click(object sender, EventArgs e)  
  35.         {  
  36.             Form2 frm2 = new Form2();  
  37.             frm2.Show();  
  38.         }  
  39.   
  40.         private void button3_Click(object sender, EventArgs e)  
  41.         {  
  42.             label3.Text = Application.OpenForms.Count.ToString();  
  43.             label1.Text = "";  
  44.             foreach (Form frm in Application.OpenForms)  
  45.             {  
  46.                 label1.Text += frm.Name + "\n";  
  47.             }  
  48.         }  
  49.     }  
  50. }