예제 #1
0
 public Form1()
 {
     InitializeComponent();
     IntStapel    = new Stapel <int>();
     StringStapel = new Stapel <string>();
     BookStapel   = new Stapel <Book>();
 }
예제 #2
0
 public Form1()
 {
     InitializeComponent();
     MijnStapel = new Stapel <int>()
     {
         Values = new List <int>()
     };
     //textBox1.Leave += new System.EventHandler(Foo);
     //button1.Click += new System.EventHandler(Foo);
     MijnStapel.Wijzig += new Stapel <int> .Handler(SchrijfNaarTextBox);
 }