Exemplo n.º 1
0
 public FormPlaying(int TableIndex, int Side, StreamWriter sw)
 {
     InitializeComponent();
     this.tableIndex     = TableIndex;
     this.side           = Side;
     labelDelegate       = new LabelDelegate(SetLabel);
     buttonDelegate      = new ButtonDelegate(SetButton);
     radioButtonDelegate = new RadioButtonDelegate(SetRadioButton);
     blackBitmap         = new Bitmap(Properties.Resources.black);
     whiteBitmap         = new Bitmap(Properties.Resources.white);
     service             = new Service(listBox1, sw);
 }
Exemplo n.º 2
0
 public FormPlaying(int TableIndex, int Side, StreamWriter sw)
 {
     InitializeComponent();
     this.tableIndex = TableIndex;
     this.side = Side;
     this.color = side;
     labelDelegate = new LabelDelegate(SetLabel);
     buttonDelegate = new ButtonDelegate(SetButton);
     radioButtonDelegate = new RadioButtonDelegate(SetRadioButton);
     blackBitmap = new Bitmap(Properties.Resources.black);
     whiteBitmap = new Bitmap(Properties.Resources.white);
     service = new Service(listBox1, sw);
 }