diff --git a/Ink Canvas/MainWindow.xaml.cs b/Ink Canvas/MainWindow.xaml.cs index be80c5c6..b470cb35 100644 --- a/Ink Canvas/MainWindow.xaml.cs +++ b/Ink Canvas/MainWindow.xaml.cs @@ -6701,7 +6701,7 @@ private void BtnScreenshot_Click(object sender, RoutedEventArgs e) private void SaveScreenShot(bool isHideNotification, string fileName = null) { - System.Drawing.Rectangle rc = System.Windows.Forms.SystemInformation.VirtualScreen; + System.Drawing.Rectangle rc = System.Windows.Forms.Screen.PrimaryScreen.Bounds; var bitmap = new System.Drawing.Bitmap(rc.Width, rc.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb); using (System.Drawing.Graphics memoryGrahics = System.Drawing.Graphics.FromImage(bitmap))