私はRichTextBoxFormatBarを利用できるように拡張WPFツールキットを使用しようとしていましたが、私はcirlcesで回っているようです。拡張WPFツールキット - RichTextBoxFormatBarを使用
The attachable property 'FormatBar' was not found in type 'RichTextBoxFormatBarManager'.
The type 'toolkit:RichTextBoxFormatBar' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
私はWPFに新しいですので、私はそれが私が拾っていないよ何かを知っている:ここと私は同じエラーメッセージを取得しておく他のサイトでいくつかの例をしようとしているにもかかわらずバグではなく、私が間違ってやっていることを誰かに教えてもらえますか?
<UserControl x:Class="TestWPF_Richtextbox.UserControl1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:toolkit="http://schemas.xceed.com/wpf/xaml/toolkit" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300"> <Grid> <RichTextBox> <toolkit:RichTextBoxFormatBarManager.FormatBar> <toolkit:RichTextBoxFormatBar /> </toolkit:RichTextBoxFormatBarManager.FormatBar> </RichTextBox> </Grid> </UserControl>
EDIT:ライブラリおよびプロジェクトの両方は、.NET 4 WPFToolkit.Extended.dllのバージョンであるV.1.6.0.0です。
使用している.NET frameweorkはどれですか? – gliderkite
4.0 - ライブラリも4.0です。 – GrandMasterFlush
あなたのプロジェクトでWPFToolkit.Extended.dllを参照したと思いますか? – gliderkite