在C#中,RichTextBox控件是一个文本框,可为您提供富文本编辑控件,而高级格式设置功能还包括加载富文本格式(RTF)文件。换句话说,RichTextBox控件允许您显示或编辑流内容,包括段落,图像,表格等。在RichTextBox中,您可以使用Size属性设置RichTextBox控件的大小。借助此属性,您可以设置RichTextBox的高度和宽度(以像素为单位)。您可以通过两种不同的方式设置此属性:
1.设计时:这是设置RichTextBox大小的最简单方法,如以下步骤所示:
- 第1步:创建一个Windows窗体,如下图所示:
Visual Studio->文件->新建->项目-> WindowsFormApp - 步骤2:接下来,将RichTextBox控件从工具箱拖放到窗体,如下图所示:
- 步骤3:拖放之后,您将转到RichTextBox的属性并设置RichTextBox的大小,如下图所示:
输出:
2.运行时:比上述方法有些棘手。在此方法中,可以借助给定的语法以编程方式设置RichTextBox控件的大小:
public System.Drawing.Size Size { get; set; }
在此,“大小”表示高度和宽度(以像素为单位)。以下步骤显示如何动态设置RichTextBox的大小:
- 步骤1:使用RichTextBox类提供的RichTextBox()构造函数创建RichTextBox。
// Creating a RichTextBox RichTextBox rbox = new RichTextBox();
- 步骤2:创建RichTextBox之后,设置theRichTextBox类提供的RichTextBox的Size属性。
// Setting the size rbox.Size = new Size(278, 115);
- 步骤3:最后,使用以下语句将此RichTextBox控件添加到表单中:
// Adding this control to the form this.Controls.Add(rbox);
例子:
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;
namespace WindowsFormsApp51 {
public partial class Form1 : Form {
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// Creating and setting the
// properties of the label
Label lb = new Label();
lb.Location = new Point(251, 70);
lb.Text = "Enter Introduction";
// Adding this label in the form
this.Controls.Add(lb);
// Creating and setting the
// properties of RichTextBox
RichTextBox rbox = new RichTextBox();
rbox.Location = new Point(236, 97);
rbox.Size = new Size(278, 115);
rbox.BorderStyle = BorderStyle.FixedSingle;
rbox.ForeColor = Color.Green;
rbox.Text = "Welcome to GeeksforGeeks Portal";
// Adding this RichTextBox
// in the form
this.Controls.Add(rbox);
}
}
}
输出: