2011年4月8日

WPF: WebBrowser TO Bitmap

摘要: var topLeftCorner = webBrowser.PointToScreen(new System.Windows.Point(0, 0)); var topLeftGdiPoint = new System.Drawing.Point((int)topLeftCorner.X, (int)topLeftCorner.Y); var size = new System.Drawing.Size((int)webBrowser.ActualWidth, (int)webBrowser.ActualHeight); var screenShot = new Drawing.Bitma. 阅读全文

posted @ 2011-04-08 09:56 Y# 阅读(409) 评论(0) 推荐(0) 编辑

导航