Ejemplo n.º 1
0
 void BtnMouseDown(object sender, MouseDownEventArgs e)
 {
     OnSlotClicked(new InventoryWindowCellMouseEventArgs {
         Cell = (InventoryCell)sender
     });
 }
Ejemplo n.º 2
0
 protected void ControlMouseUp(object sender, MouseDownEventArgs e)
 {
     OnMouseUp(CreateEventArgs((InventoryCell)sender));
 }
Ejemplo n.º 3
0
 void btn_MouseUp(object sender, MouseDownEventArgs e)
 {
     OnSlotMouseUp(new InventoryWindowCellMouseEventArgs {
         Cell = (InventoryCell)sender
     });
 }