2
在Windows窗體的背面,我得到一個窗口DC,用Graphics.FromHdc
創建一個Graphics對象,然後在釋放DC之前將圖形對象置於之前。在Graphics.Dispose之前或之後釋放DC?
Private Declare Function GetWindowDC Lib "user32.dll" (ByVal hwnd As IntPtr) As IntPtr
Private Declare Function ReleaseDC Lib "user32.dll" (ByVal hwnd As IntPtr, ByVal hdc As IntPtr) As Integer
Dim hdc As IntPtr = GetWindowDC(Me.Handle)
Try
Using g As Graphics = Graphics.FromHdc(hdc)
' ... use g ...
End Using
Finally
ReleaseDC(Me.Handle, hdc)
End Try
有關Graphics.FromHdc
的Microsoft文檔顯示了類似的代碼。 (它使用Graphics.GetHdc
和Graphics.ReleaseHdc
,而不是Win32的GetWindowDc
和ReleaseDC
)。然而,它們釋放的DC 處置的圖形對象之前:
' Get handle to device context.
Dim hdc As IntPtr = e.Graphics.GetHdc()
' Create new graphics object using handle to device context.
Dim newGraphics As Graphics = Graphics.FromHdc(hdc)
' Draw rectangle to screen.
newGraphics.DrawRectangle(New Pen(Color.Red, 3), 0, 0, 200, 100)
' Release handle to device context and dispose of the Graphics ' object
e.Graphics.ReleaseHdc(hdc)
newGraphics.Dispose()
他們爲什麼這樣做這種方式? DC應該在Graphics.Dispose
之前還是之後發佈? 錯誤的順序可能導致資源泄漏或內存損壞?