本文介绍了如何在标签上显示richtextbox的最后一行(文本)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下代码:

I have the following code:

int contents = richTextBox1.Lines.Length;




label1.text= richTextBox1.Lines[contents - 1];





然而它返回一个空值。如何解决这个问题

任何答案都会受到赞赏



however it is returning a null value. how can I resolve this
any answer would be appreciated

推荐答案

string LastLineText = richTextBox1.Lines[richTextBox1.Lines.Count - 1];
Label1.Text = LastLineText;



我还没有测试过,但这应该有效。 :)

-KR


I have not tested yet, but this should work. :)
-KR


这篇关于如何在标签上显示richtextbox的最后一行(文本)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 08:04