示例#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
     });
 }