Rich Text Box padding between text and border

前端 未结 11 2165
我在风中等你
我在风中等你 2021-02-02 10:48

Is it possible to add padding into a Rich Text Box control between the text and the border?

I tried docking a rich text box inside of a panel, with its padding for all f

11条回答
  •  情话喂你
    2021-02-02 11:22

    The RichTextBox has no padding property.

    Quick and dirty padding can be achieved by putting the RichTextBox in a Panel, which has the same BackColor property as the RichTextBox (usually Color.White).

    Then, set the Dock property of the RichTextBox to Fill, and play with the Padding properties of the Panel control.

提交回复
热议问题