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