C#TextBox滚动实现解析

C# TextBox滚动实现具体的内容是什么?使用C# TextBox时需要注意什么呢?作为我们编程的实现C# TextBox滚动的操作细节是什么呢?那么下面我们来看看具体的C# TextBox滚动的操作实现以及C# TextBox使用需要注意的问题。

创新互联专业为企业提供坡头网站建设、坡头做网站、坡头网站设计、坡头网站制作等企业网站建设、网页设计与制作、坡头企业网站模板建站服务,十余年坡头做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。

C# TextBox滚动实例代码:

 
 
 
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.ComponentModel;  
  4. using System.Data;  
  5. using System.Drawing;  
  6. using System.Text;  
  7. using System.Windows.Forms;  
  8. using System.Runtime.InteropServices;  
  9. namespace WindowsApplication27  
  10. ...{  
  11. /**////   
  12. /// 演示如何在TextBox中让文字循环滚动:  
  13. ///   
  14. /// C#中WinForm的TextBox循环自动滚动  
  15. ///   
  16. public partial class Form1 : Form  
  17. ...{  
  18. public Form1()  
  19. ...{  
  20. InitializeComponent();  
  21.  
  22. this.textBox1.Clear();  
  23. for (int i = 0; i <= 20;i++ )  
  24. ...{  
  25. this.textBox1.Text += string.Format("{0}:jinjazz__{1} ", i,i);  
  26. }  
  27. this.timer1.Interval = 200;  
  28. this.timer1.Start();  
  29. }  
  30.  
  31. //发送消息  
  32. [DllImport("user32.dll", EntryPoint = "SendMessage")]  
  33. public static extern int SendMessage(  
  34. IntPtr hWnd, int wMsg, int wParam, int lParam);  
  35. //获取滚动条位置  
  36. [DllImport("user32")]  
  37. public static extern int GetScrollPos(IntPtr hwnd, int nBar);  
  38. //设置滚动条位置  
  39. [DllImport("user32.dll")]  
  40. static extern int SetScrollPos(IntPtr hWnd, int nBar,  
  41.    int nPos, bool bRedraw);  
  42.  
  43. public const int EM_LINESCROLL = 0xb6;  
  44.    
  45. private void timer1_Tick(object sender, EventArgs e)  
  46. ...{  
  47. int i=  GetScrollPos(this.textBox1.Handle,1);  
  48.  
  49. //向下滚动一行  
  50. SendMessage(this.textBox1.Handle,   
  51. EM_LINESCROLL, 0, 1);//0,1代表垂直滚动条向下滚动  
  52.  
  53. //判断是否有位置变化,如果没有则说明到了底部,返回开始处  
  54. if (i == GetScrollPos(this.textBox1.Handle, 1))  
  55. ...{  
  56. //回到顶部,这里用SetScrollPos似乎有问题,滚动条和文字不是同步更新  
  57.  
  58. this.textBox1.SelectionStart = 0;  
  59. this.textBox1.SelectionLength = 1;  
  60. this.textBox1.ScrollToCaret();  
  61. this.textBox1.SelectionLength = 0;  
  62. }  
  63. Console.WriteLine(i);  
  64. }  
  65.  
  66. private void textBox1_MouseEnter(  
  67. object sender, EventArgs e)  
  68. ...{  
  69. this.timer1.Stop();  
  70. }  
  71.  
  72. private void textBox1_MouseLeave(  
  73. object sender, EventArgs e)  
  74. ...{  
  75. this.timer1.Start();  
  76. }  
  77. }  
  78. }  

C# TextBox使用是要注意:

1、如何在多行TextBox中写入文本时实现换行:由于Windows系统中,回车符需两上字符。因此方法是使用\r\n标记,如

 
 
 
  1. Label="Calculation "+":.......SUM\r\n";  
  2. textBox.AppendText(Label); 

另外还有一个办法是用Environment.Newline的方法,可以兼容Windows和Linux系统。

2、如何在多行TextBox中用滚动条,使添加文本后自动滚动显示到最后一行:方法是使用ScrollToCaret方法,自动滚动到插入符的位置,如:

 
 
 
  1. textBox.AppendText(Label);  
  2. textBox.ScrollToCaret(); 

C# TextBox滚动的实现以及C# TextBox使用时需要注意的基本内容就向你介绍到这里,希望对你了解和学习C# TextBox滚动、换行等等有所帮助。

网站标题:C#TextBox滚动实现解析
分享链接:http://www.csdahua.cn/qtweb/news44/100344.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网