本文整理汇总了C#中InputHandler.CheckLeftMousePressed方法的典型用法代码示例。如果您正苦于以下问题:C# InputHandler.CheckLeftMousePressed方法的具体用法?C# InputHandler.CheckLeftMousePressed怎么用?C# InputHandler.CheckLeftMousePressed使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类InputHandler
的用法示例。
在下文中一共展示了InputHandler.CheckLeftMousePressed方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Update
//.........这里部分代码省略.........
lleft.LoadFrame(ff);
}
if (handler.CheckPressedKey(Keys.LeftShift) || handler.CheckPressedKey(Keys.RightShift))
{
if (handler.CheckPressedKey(Keys.Down))
{
testingRectangle.ModifyHeight(SPEED);
}
if (handler.CheckPressedKey(Keys.Up))
{
testingRectangle.ModifyHeight(-SPEED);
}
if (handler.CheckPressedKey(Keys.Left))
{
testingRectangle.ModifyWidth(-SPEED);
}
if (handler.CheckPressedKey(Keys.Right))
{
testingRectangle.ModifyWidth(SPEED);
}
}
else
{
if (handler.CheckPressedKey(Keys.Down))
{
testingRectangle.ModifyY(SPEED);
}
if (handler.CheckPressedKey(Keys.Up))
{
testingRectangle.ModifyY(-SPEED);
}
if (handler.CheckPressedKey(Keys.Left))
{
testingRectangle.ModifyX(-SPEED);
}
if (handler.CheckPressedKey(Keys.Right))
{
testingRectangle.ModifyX(SPEED);
}
}
#region Check if the mouse is in the body.
if (dragBody)
if (handler.CheckMouseIn(testingRectangle))
{
if (handler.CheckLeftMousePressed())
{
if (!dragging && handler.LeftMouseDraggedBy().X == 0 && handler.LeftMouseDraggedBy().Y == 0)
{
this.originalPoint = testingRectangle.GetPoint();
if (mode) this.originalPoint = testingRectangle.GetSize();
dragging = true;
}
}
else
{
color = Color.Red;
dragging = false;
}
}
else
{
color = Color.DarkGray;
}
if (dragging)
{
color = Color.DarkRed;
Point fix = originalPoint + handler.LeftMouseDraggedBy();
if (mode)
{
testingRectangle.SetSize(ref fix);
}
else
{
testingRectangle.SetPoint(ref fix);
}
}
#endregion
blink++;
} catch (Exception ex)
{
Logger.WriteLine(ex.ToString());
fileMode = 0;
}
}