gpt4 book ai didi

vb.net - 是否可以在设计时在富文本框中设置文本样式?

转载 作者:行者123 更新时间:2023-12-04 10:21:49 25 4
gpt4 key购买 nike

我有一个 System.Windows.Forms.RichTextBox,我希望用它来向我的应用程序用户显示一些说明。

是否可以将我在设计时输入的某些文本设置为粗体?

或者我别无选择,只能在运行时执行?

最佳答案

向您的项目添加一个新类并粘贴如下所示的代码。编译。将新控件从工具箱顶部拖放到窗体上。选择 RichText 属性并单击带有点的按钮。这将启动写字板。编辑文本,按 Ctrl+S 并关闭写字板。请注意,当写字板打开时,Visual Studio 设计器不起作用。

Imports System.ComponentModel
Imports System.Drawing.Design
Imports System.IO
Imports System.Diagnostics

Public Class MyRtb
Inherits RichTextBox

<Editor(GetType(RtfEditor), GetType(UITypeEditor))> _
Public Property RichText() As String
Get
Return MyBase.Rtf
End Get
Set(ByVal value As String)
MyBase.Rtf = value
End Set
End Property

End Class

Friend Class RtfEditor
Inherits UITypeEditor

Public Overrides Function GetEditStyle(ByVal context As ITypeDescriptorContext) As UITypeEditorEditStyle
Return UITypeEditorEditStyle.Modal
End Function

Public Overrides Function EditValue(ByVal context As ITypeDescriptorContext, ByVal provider As IServiceProvider, ByVal value As Object) As Object
Dim fname As String = Path.Combine(Path.GetTempPath, "text.rtf")
File.WriteAllText(fname, CStr(value))
Process.Start("wordpad.exe", fname).WaitForExit()
value = File.ReadAllText(fname)
File.Delete(fname)
Return value
End Function
End Class

关于vb.net - 是否可以在设计时在富文本框中设置文本样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2984875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com