尊敬的老师:
上午好
运行程序后, 我想在textBox里面显示输出 X=3
Y=4
M=5
这三行内容。
那么在textBox事件里面应该如何写这样的代码呢?才能在运行程序后,输出这三行内容?
小禾斗 发表于2017-10-23 08:32
读者朋友:
您好,通过设置Text属性,显示多行的话,可以在显示的内容里面加入换行(\n)。
老师:
我怎么测试都不行,显示是可以显示了,就是无法换行。
代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO.Ports;
namespace 三菱PLC
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
textBox1.Text = "x=3\nY=4\nz=5";
}
}
chongchong 发表于2017-10-23 11:58
老师:
我怎么测试都不行,显示是可以显示了,就是无法换行。
代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO.Ports;
namespace 三菱PLC
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
textBox1.Text = "x=3\nY=4\nz=5";
}
}
中间连接用Enviroment.NewLine试一下。