我的 RichTextBox 缺少属性?

发布于 2024-10-15 23:40:40 字数 561 浏览 0 评论 0原文

希望这里有人知道为什么我缺少这些属性...... 如果我看一下 http://msdn.microsoft .com/en-us/library/system.windows.controls.richtextbox.aspx 这明确显示了一个名为 VerticalContenAlignment 的属性 - IntelliSense 不建议使用此属性,如果我只是键入它,编译器也会拒绝它......该项目在 .NET 4 上运行,因此应该确认上面的链接,其中显示这些是 .NET 4 的特性... 知道为什么我缺少这些属性吗?

感谢您的帮助!

-编辑:好吧,我想我有理由: 上面的链接列出了 System.Windows.Controls.Richtextbox 的属性,我有一个 System.Windows.Forms.Richtextbox ...现在如何组合它?为什么有两个不同的?抱歉,如果这是一个愚蠢的问题 - 我只是现在不明白......

Hope some1 here knows why I am missing these properties....
If I take a look at http://msdn.microsoft.com/en-us/library/system.windows.controls.richtextbox.aspx
this definitly shows a property called VerticalContenAlignment - IntelliSense doesn't propose this property and if I just type it, the compiler also rejects it.... The Project is runnign on .NET 4 so it should confirm to the above link where it says these are the .NET 4 characteristics...
Any idea why I am missing these properties?

Thanks for any help!!!

-EDIT: Ok I guess I have the reason:
The link above lists properties for System.Windows.Controls.Richtextbox, I have a System.Windows.Forms.Richtextbox ...How can I combine this now thoug? any why are there 2 different ones? Sorry if its a stupid question - I'm just not getting it right now...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡淡的优雅 2024-10-22 23:40:40

您想要使用的新组件用于 WPF 项目,Windows 窗体的标准 RichTextBox 是另一个控件,您不能混合使用它们。您要么不使用新属性并接受 Windows 窗体组件为您提供的功能,要么使用第三方组件来实现您所需的功能。

The new component you would like to use is for WPF projects, the standard RichTextBox for Windows forms is another control and you cannot mix them. Either you do not use the new property and you live with what the Windows Forms component offers you or you use a third party component to achieve what you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文