Where Print Screen Saved ((new)) ⚡

If you pressed (or Fn + PrtScn ) by itself, or Alt + PrtScn , the screenshot is not saved as a file yet .

Note that this is a basic example, and you may want to add more features, error handling, and polish to make it production-ready. where print screen saved

| Key Combination | Where does it go? | | :--- | :--- | | | Clipboard (You must Paste/Ctrl+V to see it). | | Windows + PrtScn | Pictures > Screenshots folder (Saved as a file). | | Windows + Shift + S | Clipboard & Notification (Lets you save manually). | | Windows + Alt + PrtScn | Videos > Captures folder (Best for games). | If you pressed (or Fn + PrtScn )

_saveLocation = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures) + @"\Screenshots"; _notifyIcon = new NotifyIcon(); _notifyIcon.Icon = System.Drawing.SystemIcons.Information; _notifyIcon.Visible = true; _notifyIcon.DoubleClick += (sender, e) => ShowSaveLocation(); | | :--- | :--- | | |

If you were trying to take a screenshot of a game or video, the normal Print Screen button often captures a black screen.