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