Ejemplo n.º 1
0
 public Form1()
 {
     InitializeComponent();
     CheckForIllegalCrossThreadCalls = false;
     coins = new List <CoinData>();
     //standaard state
     state = new SortState();
 }
Ejemplo n.º 2
0
 private void button2_Click(object sender, EventArgs e)
 {
     state = new FilterState();
     state.Handle(this);
 }
Ejemplo n.º 3
0
 private void button1_Click(object sender, EventArgs e)
 {
     state = new SortState();
     state.Handle(this);
 }