C# to vb.net 代码转换

本人想改掉vb.net中,控件enable=false的字体颜色,无奈改不了。找到了C#中的代码希望可以转成vb.net的代码,我好试试效果~~【大家新年好!】[Syst... 本人想改掉vb.net 中, 控件 enable = false 的字体颜色,无奈改不了。找到了C#中的代码希望可以转成vb.net的代码,我好试试效果~~
【大家新年好!】
[System.Runtime.InteropServices.DllImport("user32.dll")]
public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int wndproc);
[System.Runtime.InteropServices.DllImport("user32.dll")]
public static extern int GetWindowLong(IntPtr hWnd, int nIndex);

public const int GWL_STYLE = -16;
public const int WS_DISABLED = 0x8000000;

public static void SetControlEnabled(Control c, bool enabled)
{
if (enabled)
{ SetWindowLong(c.Handle, GWL_STYLE, (~WS_DISABLED) & GetWindowLong(c.Handle, GWL_STYLE)); }
else
{ SetWindowLong(c.Handle, GWL_STYLE, WS_DISABLED + GetWindowLong(c.Handle, GWL_STYLE)); }
}
展开
 我来答
百度网友9b9910e
2014-02-08 · TA获得超过397个赞
知道小有建树答主
回答量:721
采纳率:0%
帮助的人:442万
展开全部
<System.Runtime.InteropServices.DllImport("user32.dll")> _
Public Shared Function SetWindowLong(hWnd As IntPtr, nIndex As Integer, wndproc As Integer) As Integer
End Function
<System.Runtime.InteropServices.DllImport("user32.dll")> _
Public Shared Function GetWindowLong(hWnd As IntPtr, nIndex As Integer) As Integer
End Function
Public Const GWL_STYLE As Integer = -16
Public Const WS_DISABLED As Integer = &H8000000
Public Shared Sub SetControlEnabled(c As Control, enabled As Boolean)
If enabled Then
SetWindowLong(c.Handle, GWL_STYLE, (Not WS_DISABLED) And GetWindowLong(c.Handle, GWL_STYLE))
Else
SetWindowLong(c.Handle, GWL_STYLE, WS_DISABLED + GetWindowLong(c.Handle, GWL_STYLE))
End If
End Sub
授人以渔:
这个网站超牛逼
http://www.developerfusion.com/tools/
百度网友862b31c
2014-02-08 · TA获得超过1529个赞
知道小有建树答主
回答量:1045
采纳率:100%
帮助的人:811万
展开全部
好像思不行吧,去掉Disabled后就是不禁用了吧。
这个颜色是系统色,除非你把系统配色改了。要么你自己实现控件(UserControl)。或用第三方的控件。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式