代码隐藏中的 RichTextBox FormatBar
我正在查看 codeplex WPF 扩展 RTB,并且喜欢在代码隐藏中执行以下操作:
<RichTextBox>
<toolkit:RichTextBoxFormatBarManager.FormatBar>
<toolkit:RichTextBoxFormatBar />
</toolkit:RichTextBoxFormatBarManager.FormatBar>
</RichTextBox>
我有人才流失,我的代码中有以下内容,但无法将其连接起来!
Microsoft.Windows.Controls.RichTextBox rtb_wording = new Microsoft.Windows.Controls.RichTextBox();// 使用扩展 RTB Microsoft.Windows.Controls.RichTextBoxFormatBarManager 管理器 = new RichTextBoxFormatBarManager(); Microsoft.Windows.Controls.RichTextBoxFormatBar formatBar = new Microsoft.Windows.Controls.RichTextBoxFormatBar();
任何帮助真的很感激
Im looking at the codeplex WPF extended RTB and id like to perform the following in code behind:
<RichTextBox>
<toolkit:RichTextBoxFormatBarManager.FormatBar>
<toolkit:RichTextBoxFormatBar />
</toolkit:RichTextBoxFormatBarManager.FormatBar>
</RichTextBox>
Im having brain drain, I have the following in my code behind but cant wire it up!
Microsoft.Windows.Controls.RichTextBox rtb_wording = new Microsoft.Windows.Controls.RichTextBox();// USE extended RTB Microsoft.Windows.Controls.RichTextBoxFormatBarManager manager = new RichTextBoxFormatBarManager(); Microsoft.Windows.Controls.RichTextBoxFormatBar formatBar = new Microsoft.Windows.Controls.RichTextBoxFormatBar();
Any help really appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应创建 RichTextBoxFormatBarManager 类型的对象。相反,请使用此类的静态方法,如下所示。请注意,“myCanvas”是网格/画布容器的名称。将其更改为您为容器指定的任何名称。
You shouldn't create an object of type RichTextBoxFormatBarManager. Instead, use a static method of this class like I wrote below. Note that "myCanvas" is the name of the grid/canvas container. Change it to whatever name you have for your container.