www.pudn.com > wxwinter2.rar > index.cs


using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Text; 
using System.Windows.Forms; 
 
namespace wxwinter.wf.DesignerForm 
{ 
    public partial class index : Form 
    { 
        public index() 
        { 
            InitializeComponent(); 
        } 
 
        private void Form1_Load(object sender, EventArgs e) 
        { 
 
 
 
        } 
 
        private void button1_Click(object sender, EventArgs e) 
        { 
            (new SequentialForm()).Show(); 
        } 
 
        private void button2_Click(object sender, EventArgs e) 
        { 
            (new StateMachineForm()).Show(); 
        } 
 
        private void button3_Click(object sender, EventArgs e) 
        { 
            (new ClassViewForm()).Show(); 
        } 
    } 
}