Asp.net开发(C#语言)中如何使textbox的滚动条自动滚动到最底端(或最新一行的信息的位置) 60
Asp.net开发(C#语言)中如何使textbox的滚动条自动滚动到最底端(或最新一行的信息的位置?在WinForm窗体开发中有一个方法:ScrollToCaret()...
Asp.net开发(C#语言)中如何使textbox的滚动条自动滚动到最底端(或最新一行的信息的位置?
在WinForm窗体开发中有一个方法:ScrollToCaret()可以实现这种功能,但是web开发中怎么找不不到这个方法呢?这到底如何实现啊?
一楼回答等于没有回答,这个我知道,只有TextMode属性改为MultiLine时才会有滚动条。但滚动条只会在最上端不会移动到最下端 。我问的是如何让如何使textbox的滚动条自动滚动到最底端,也就是最新插入的那一行字符串的位置。
四楼真是用心,讲解的很详细,但你却没有看清题意,我问的不是WinForm开发,而是Web开发。但还是要谢谢你的回答。 展开
在WinForm窗体开发中有一个方法:ScrollToCaret()可以实现这种功能,但是web开发中怎么找不不到这个方法呢?这到底如何实现啊?
一楼回答等于没有回答,这个我知道,只有TextMode属性改为MultiLine时才会有滚动条。但滚动条只会在最上端不会移动到最下端 。我问的是如何让如何使textbox的滚动条自动滚动到最底端,也就是最新插入的那一行字符串的位置。
四楼真是用心,讲解的很详细,但你却没有看清题意,我问的不是WinForm开发,而是Web开发。但还是要谢谢你的回答。 展开
展开全部
你是要做聊天的功能吧
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; namespace WindowsApplication27 ...{ /**//// <summary> /// 演示如何在TextBox中让文字循环滚动: /// /// C#中WinForm的TextBox循环自动滚动 /// </summary> public partial class Form1 : Form ...{ public Form1() ...{ InitializeComponent(); this.textBox1.Clear(); for (int i = 0; i <= 20;i++ ) ...{ this.textBox1.Text += string.Format("{0}:jinjazz__{1} ", i,i); } this.timer1.Interval = 200; this.timer1.Start(); } //发送消息 [DllImport("user32.dll", EntryPoint = "SendMessage")] public static extern int SendMessage( IntPtr hWnd, int wMsg, int wParam, int lParam); //获取滚动条位置 [DllImport("user32")] public static extern int GetScrollPos(IntPtr hwnd, int nBar); //设置滚动条位置 [DllImport("user32.dll")] static extern int SetScrollPos(IntPtr hWnd, int nBar, int nPos, bool bRedraw); public const int EM_LINESCROLL = 0xb6; private void timer1_Tick(object sender, EventArgs e) ...{ int i= GetScrollPos(this.textBox1.Handle,1); //向下滚动一行 SendMessage(this.textBox1.Handle, EM_LINESCROLL, 0, 1);//0,1代表垂直滚动条向下滚动 //判断是否有位置变化,如果没有则说明到了底部,返回开始处 if (i == GetScrollPos(this.textBox1.Handle, 1)) ...{ //回到顶部,这里用SetScrollPos似乎有问题,滚动条和文字不是同步更新 this.textBox1.SelectionStart = 0; this.textBox1.SelectionLength = 1; this.textBox1.ScrollToCaret(); this.textBox1.SelectionLength = 0; } Console.WriteLine(i); } private void textBox1_MouseEnter( object sender, EventArgs e) ...{ this.timer1.Stop(); } private void textBox1_MouseLeave( object sender, EventArgs e) ...{ this.timer1.Start(); } } } C# TextBox使用是要注意:
1、如何在多行TextBox中写入文本时实现换行:由于Windows系统中,回车符需两上字符。因此方法是使用\r\n标记,如
Label="Calculation "+":.......SUM\r\n"; textBox.AppendText(Label); 另外还有一个办法是用Environment.Newline的方法,可以兼容Windows和Linux系统。
2、如何在多行TextBox中用滚动条,使添加文本后自动滚动显示到最后一行:方法是使用ScrollToCaret方法,自动滚动到插入符的位置,如:
textBox.AppendText(Label); textBox.ScrollToCaret(); C# TextBox滚动的实现以及C# TextBox使用时需要注意的基本内容就向你介绍到这里,希望对你了解和学习C# TextBox滚动、换行等等有所帮助
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; namespace WindowsApplication27 ...{ /**//// <summary> /// 演示如何在TextBox中让文字循环滚动: /// /// C#中WinForm的TextBox循环自动滚动 /// </summary> public partial class Form1 : Form ...{ public Form1() ...{ InitializeComponent(); this.textBox1.Clear(); for (int i = 0; i <= 20;i++ ) ...{ this.textBox1.Text += string.Format("{0}:jinjazz__{1} ", i,i); } this.timer1.Interval = 200; this.timer1.Start(); } //发送消息 [DllImport("user32.dll", EntryPoint = "SendMessage")] public static extern int SendMessage( IntPtr hWnd, int wMsg, int wParam, int lParam); //获取滚动条位置 [DllImport("user32")] public static extern int GetScrollPos(IntPtr hwnd, int nBar); //设置滚动条位置 [DllImport("user32.dll")] static extern int SetScrollPos(IntPtr hWnd, int nBar, int nPos, bool bRedraw); public const int EM_LINESCROLL = 0xb6; private void timer1_Tick(object sender, EventArgs e) ...{ int i= GetScrollPos(this.textBox1.Handle,1); //向下滚动一行 SendMessage(this.textBox1.Handle, EM_LINESCROLL, 0, 1);//0,1代表垂直滚动条向下滚动 //判断是否有位置变化,如果没有则说明到了底部,返回开始处 if (i == GetScrollPos(this.textBox1.Handle, 1)) ...{ //回到顶部,这里用SetScrollPos似乎有问题,滚动条和文字不是同步更新 this.textBox1.SelectionStart = 0; this.textBox1.SelectionLength = 1; this.textBox1.ScrollToCaret(); this.textBox1.SelectionLength = 0; } Console.WriteLine(i); } private void textBox1_MouseEnter( object sender, EventArgs e) ...{ this.timer1.Stop(); } private void textBox1_MouseLeave( object sender, EventArgs e) ...{ this.timer1.Start(); } } } C# TextBox使用是要注意:
1、如何在多行TextBox中写入文本时实现换行:由于Windows系统中,回车符需两上字符。因此方法是使用\r\n标记,如
Label="Calculation "+":.......SUM\r\n"; textBox.AppendText(Label); 另外还有一个办法是用Environment.Newline的方法,可以兼容Windows和Linux系统。
2、如何在多行TextBox中用滚动条,使添加文本后自动滚动显示到最后一行:方法是使用ScrollToCaret方法,自动滚动到插入符的位置,如:
textBox.AppendText(Label); textBox.ScrollToCaret(); C# TextBox滚动的实现以及C# TextBox使用时需要注意的基本内容就向你介绍到这里,希望对你了解和学习C# TextBox滚动、换行等等有所帮助
展开全部
这个功能是实现不了的,但你可以根据数据量来调整的高,不可能使滚动条自动在最底端,目前微软还没有出这个功能,如果你内容多想显示出来的话,可以根据字符串的量来动态改变该控件的高度。
或者干脆不用textbox。用LABLE控件来赋值,这样就全显示出来了
或者干脆不用textbox。用LABLE控件来赋值,这样就全显示出来了
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
asp.net中是TextMode属性改为MultiLine。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
javascript试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询