Two-line text button in Compact Framework

℡╲_俬逩灬. 提交于 2019-12-04 17:49:49

问题


I want to create a two-line text button in Compact Framework. I have used every idea in this thread but without success.

http://social.msdn.microsoft.com/forums/en-US/winforms/thread/626c21e0-369f-441e-b2f1-b51db633e38b

If I use \n or \r\n or Environment.NewLine I get squares.

I am using Compact Framework 3.5.

Any idea on how to make a two-line text box?


回答1:


You need to set the button to allow multiple lines. This can be achieved with following P/Invoke code.

private const int BS_MULTILINE = 0x00002000;
private const int GWL_STYLE = -16;

[System.Runtime.InteropServices.DllImport("coredll")]
private static extern int GetWindowLong(IntPtr hWnd, int nIndex);

[System.Runtime.InteropServices.DllImport("coredll")]
private static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);

public static void MakeButtonMultiline(Button b)
{
    IntPtr hwnd = b.Handle;
    int currentStyle = GetWindowLong(hwnd, GWL_STYLE);
    int newStyle = SetWindowLong(hwnd, GWL_STYLE, currentStyle | BS_MULTILINE);
}

Use it like this:

MakeButtonMultiline(button1);

(source, verified it works on a CE device)



来源:https://stackoverflow.com/questions/7658960/two-line-text-button-in-compact-framework

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!