如何在 Powershell RichTextBox 中显示 .rtf 文件
我想在 Powershell RichTextBox 中显示 RTF 文件的内容。
我正在尝试制作一种自定义 EULA,最简单的方法是将内容写入 RTF 文件,然后将其显示在我的表单上的 RichTextBox 中,因此用户必须单击复选框才能接受它。
(我确信这位于 ServerFault 和 StackOverflow 之间,但我猜这里的 DotNet 专家会最了解。;-))
干杯,
Ben
I want to display the content of an RTF file in a Powershell RichTextBox.
I am trying to make a kind of custom EULA, and the easiest way to do it would be to write the content in an RTF file and then have it display in a RichTextBox on my form, so the user has to click a checkbox to accept it.
(I'm sure this sits between ServerFault and StackOverflow, but I'm guessing the DotNet gurus on here will know best. ;-) )
Cheers,
Ben
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧——这很容易。在发帖之前我应该在谷歌上再多看看我的懒惰屁股。使用
RichTextFile.Loadfile(c:\myfile.rtf)
并且效果很好。OK - that was easy. Should have got my lazy ass on Google a bit more before posting. Used
RichTextFile.Loadfile(c:\myfile.rtf)
and it worked a treat.如果其他人遇到这种情况,想知道 PowerShell RichTextBox 在哪里control 来自它对 System.Windows.Forms 中的一个引用。这是构建先决条件的代码:
In case anyone else happens upon this wondering where the PowerShell RichTextBox control came from it's a reference to the one in System.Windows.Forms. Here's the code with prerequisite build up: