易截截图软件、单文件、免安装、纯绿色、仅160KB

VB翻译成C#问题 - .NET技术 / C#

如下VB代码:
Public Class Form1
  Dim DyLikeDrawLib As New DYD.DYD
  Dim PngPath As String
  Dim PNG As Bitmap
  Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  PngPath = "y:\图片库\0.png" 'PNG图片地址
  PNG = New Bitmap(PngPath)
  DyLikeDrawLib.UserKey = "D" '授权码
  DyLikeDrawLib.DrawBP(Me, PNG, 255) 'DrawBP(要显示的目标窗体,PNG图,透明度)
  End Sub
  Protected Overloads Overrides ReadOnly Property CreateParams() As CreateParams
  Get
  Dim cp As CreateParams = MyBase.CreateParams
  cp.ExStyle = cp.ExStyle Or &H80000
  Return cp
  End Get
  End Property

End Class

因本人没有学过VB所以也不知VB语法所以请问翻译成C#应该是什么呢?
信手写的,看不懂也别太较真儿~

public class Form1 : Form
{
DYD.DYD DyLikeDrawLib =new DYD.DYD();
string PngPath ;
Bitmap PNG ;
private Form1_Load(object sender,EventArgse){
  PngPath = "y:\图片库\0.png" 'PNG图片地址;
  PNG = New Bitmap(PngPath);
  DyLikeDrawLib.UserKey = "D" //授权码;
  DyLikeDrawLib.DrawBP(Me, PNG, 255) //DrawBP(要显示的目标窗体,PNG图,透明度);
}

...



相关问答:

VFP如何调用C函数 - 其他数据库开发 / VFP

请问VFP中如何调用C/C++函数?

你要调用什么功能的函数?要看看VFP中有没有对应的函数,如果有就省着再调用了。如果没有,可以将C/C++函数写个DLL或FLL,然后在VFP调用即可。

十豆三 老师,怎么才能修改自己的 ......

vb - VB / 基础类

在vb中如何读取Word内容(包含表格,图片,等)
竟然不是zero。

不知道怎么实现的不要说话

这个只能读文本,
VB code:
Private Sub Command1_Click()
Dim WordApp As Object
Set WordApp = CreateObject(& ......

vb - VB / 基础类

我想把word另存为xml之后,用vb读取这个xml的内容,请问如何实现?
dim f as integer
dim b() as byte
dim s as string
dim L as long
f=freefile()
open "abc.xml" for binary access read as #f
......

vb 中 - VB / 基础类

dim a as string,b as string,c as string
a="工程编号,单位工程名称,分部工程编号"
b="单位工程名称"
c="单位"
怎么才能判断出a字符串中存在b字符串,而不存在c字符串

看看i ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号