Compact Framework 中的两行文本按钮

发布于 2024-12-07 21:17:46 字数 457 浏览 0 评论 0原文

我想在 Compact Framework 中创建一个两行文本按钮。我已经使用了该线程中的所有想法,但没有成功。

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

如果我使用 \n< /code> 或 \r\nEnvironment.NewLine 我得到方块。

我正在使用紧凑框架 3.5。

关于如何制作两行文本框有什么想法吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

想你只要分分秒秒 2024-12-14 21:17:46

您需要将按钮设置为允许多行。这可以通过以下 P/Invoke 代码来实现。

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);
}

像这样使用它:(

MakeButtonMultiline(button1);

来源,已验证它可以在 CE 设备上运行)

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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文