雖然添加了放大鏡的功能,但是在進行像素級的定位時,還是不容易精確定位,在用滑鼠操作時要改變一兩個像素的位置還是有些困難的。
/// <summary> /// 处理键盘按下事件 /// 用于实现以下功能: /// 当用户按下Esc键时,退出截图过程; /// Shift + Enter 开始截图的功能; /// 使用键盘的上下左右键调整截图位置的功能; /// Shift + 上下左右键调整截图区域大小的功能; /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Form1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Escape) { ExitCutImage(true); // 如果不加这一句,热键只能在窗口隐藏后使用一次,之后就不起作用了。 //RegisterHotKey(Handle, 100, 2 | 1, Keys.A); } if (e.Shift && e.KeyCode == Keys.Enter) { if (!this.lbl_CutImage.Visible) { this.isCuting = true; this.beginPoint = MousePosition; this.endPoint = MousePosition; SaveCutImageSize(MousePosition, MousePosition); UpdateCutInfoLabel(UpdateUIMode.ShowInfoBox | UpdateUIMode.ShowCutImage); } } if (e.KeyCode == Keys.Left) { if (this.lbl_CutImage.Visible) { if (e.Shift) { if (this.cutImageRect.Width > 1) { this.cutImageRect.Width -= 1; Cursor.Position = new Point(Cursor.Position.X - 1, Cursor.Position.Y); UpdateCutInfoLabel(UpdateUIMode.None); } } else { if (this.cutImageRect.Left > -1) { this.cutImageRect.X -= 1; UpdateCutInfoLabel(UpdateUIMode.None); } } } else { if (Cursor.Position.X > -1) { Cursor.Position = new Point(Cursor.Position.X - 1, Cursor.Position.Y); } } } if (e.KeyCode == Keys.Right) { if (this.lbl_CutImage.Visible) { if (e.Shift) { if (this.cutImageRect.Right < this.Width + 1) { this.cutImageRect.Width += 1; Cursor.Position = new Point(Cursor.Position.X + 1, Cursor.Position.Y); UpdateCutInfoLabel(UpdateUIMode.None); } } else { if (this.cutImageRect.Right < this.Width + 1) { this.cutImageRect.X += 1; UpdateCutInfoLabel(UpdateUIMode.None); } } } else { if (Cursor.Position.X < this.Width + 1) { Cursor.Position = new Point(Cursor.Position.X + 1, Cursor.Position.Y); } } } if (e.KeyCode == Keys.Up) { if (this.lbl_CutImage.Visible) { if (e.Shift) { if (this.cutImageRect.Height > 1) { this.cutImageRect.Height -= 1; Cursor.Position = new Point(Cursor.Position.X, Cursor.Position.Y - 1); UpdateCutInfoLabel(UpdateUIMode.None); } } else { if (this.cutImageRect.Top > -1) { this.cutImageRect.Y -= 1; UpdateCutInfoLabel(UpdateUIMode.None); } } } else { if (Cursor.Position.Y > -1) { Cursor.Position = new Point(Cursor.Position.X, Cursor.Position.Y - 1); } } } if (e.KeyCode == Keys.Down) { if (this.lbl_CutImage.Visible) { if (e.Shift) { if (this.cutImageRect.Bottom < this.Height + 1) { this.cutImageRect.Height += 1; Cursor.Position = new Point(Cursor.Position.X, Cursor.Position.Y + 1); UpdateCutInfoLabel(UpdateUIMode.None); } } else { if (this.cutImageRect.Bottom < this.Height + 1) { this.cutImageRect.Y += 1; UpdateCutInfoLabel(UpdateUIMode.None); } } } else { if (Cursor.Position.Y < this.Height + 1) { Cursor.Position = new Point(Cursor.Position.X, Cursor.Position.Y + 1); } } } }
/// <summary> /// 处理键盘抬起事件 /// Shift + Enter 开始截图,当松开Shitf键后, /// 停止截图区域大小的设置,不然的话鼠标移动还会改变截取区域的大小; /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Form1_KeyUp(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.ShiftKey) { if (this.isCuting) { this.isCuting = false; this.pictureBox_zoom.Hide(); this.lastMouseMoveTime = 0; UpdateCutInfoLabel(UpdateUIMode.None); } } }
按下截圖快捷鍵(通常是:Ctrl + Shift + A)後,可以移動滑鼠到大概的位置,然後就可以透過鍵盤的上下左右鍵精確移動滑鼠的位置,在精確定位截圖的位置後,就可以按下Shift 鍵再按Enter鍵,Shift鍵不要放開,這時可以按上下左右鍵改變截圖區域的大小,放開Shift鍵完成截圖區域大小設定;
這時你可以透過上下左右鍵來改變截圖區域的位置,按下Shift鍵不要放開,再按上下左右鍵可以改變截圖區域的大小。
以上是C#開發實例-訂位螢幕截圖工具(八)新增鍵盤操作截圖功能程式碼範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!