Is there any way to embed a custom control into the flowdocument and have it correctly displayed by the FlowDocument viewers (export it to Xaml text file and open it by a viewer)?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If by custom control you mean UserControl or any custom control inherited from a WPF control, you can’t: This custom control is in its own XML namespace, and requires code deployed in an assembly. Your XAML reader won’t have access to it when attempting to parse the file, and won’t succed.
You can only use controls provided by Microfost, and deployed with the viewer. Maybe it’s possible to make viewers know of assemblies deployed in the GAC, but it’s a solution only if you can deploy in the client GAC.