本文介绍了VB6中的PictureBoc.hdc在Vb.NET中是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在VB6中,我使用了Picturebox1.hdc,因此在VB.NET中如何使用它?
In VB6 I used Picturebox1.hdc so in VB.NET how do I use it?
Private Declare Function StretchBlt Lib "gdi32" (ByVal hdc As Long, ByVal X As Long, ByVal Y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal hSrcDC As Long, ByVal xSrc As Long, ByVal ySrc As Long, ByVal nSrcWidth As Long, ByVal nSrcHeight As Long, ByVal dwRop As Long) As Long
Private Sub Command1_Click()
Picture1.ScaleMode = 3
Call StretchBlt(Picture1.hdc, Picture1.ScaleWidth, 0, Picture1.ScaleWidth * -1, Picture1.ScaleHeight, Picture1.hdc, 0, 0, Picture1.ScaleWidth, Picture1.ScaleHeight, &HCC0020)
End Sub
请帮帮我.
感谢您的进步
help me please.
thanks for advance
推荐答案
这篇关于VB6中的PictureBoc.hdc在Vb.NET中是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!