Delphi语言如何转换成 C#
var Bitmap: TBitmap;Bitmap := TBitmap.Create;
try
Bitmap.Width := Width;
Bitmap.Height := Height;
Bitmap.PixelFormat := pf24bit;
//Bitmap.Canvas.Brush.Color := clSilver;
//Bitmap.Canvas.FillRect(Bitmap.Canvas.ClipRect);
PaintTo(Bitmap.Canvas,0,0);
SetAlphaBlend(true);
SetAlphaBlendValue(Bitmap.Handle);
finally
Bitmap.Free;
end;
如何在c#中实现