Compact Framework 中的两行文本按钮
我想在 Compact Framework 中创建一个两行文本按钮。我已经使用了该线程中的所有想法,但没有成功。
http://social.msdn.microsoft.com/forums/en-US/winforms/thread/626c21e0-369f-441e-b2f1-b51db633e38b
如果我使用 \n< /code> 或
\r\n
或 Environment.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将按钮设置为允许多行。这可以通过以下 P/Invoke 代码来实现。
像这样使用它:(
来源,已验证它可以在 CE 设备上运行)
You need to set the button to allow multiple lines. This can be achieved with following P/Invoke code.
Use it like this:
(source, verified it works on a CE device)