This question is locked. New answers and comments are not allowed.
I have a simple document i will be using as a test to load into a radrichtext control and then print it.
I would like to be able to edit it using some kind of visual tool. But when i try to load it into visual studio it tells me that the root is not supported. This is what my file looks like:
I kind of based it on one of the sample files called, RadRichTextBoxOverview.xaml , just much simpler.
Is there a way i can edit it without well, constantly printing it to see what it actually looks like?
I would like to be able to edit it using some kind of visual tool. But when i try to load it into visual studio it tells me that the root is not supported. This is what my file looks like:
<
telerik:RadDocument
xmlns:telerik
=
"clr-namespace:Telerik.Windows.Documents.Model;assembly=Telerik.Windows.Documents"
DefaultPageLayoutSettings
=
"793,1123"
LayoutMode
=
"Flow"
PageViewMargin
=
"10,10"
ParagraphDefaultSpacingAfter
=
"10"
SectionDefaultPageMargin
=
"95,95,95,95"
>
<
telerik:Section
PageMargin
=
"10,10,10,10"
>
<
telerik:Table
LayoutMode
=
"AutoFit"
>
<
telerik:TableRow
>
<
telerik:TableCell
>
<
telerik:Paragraph
>
<
telerik:Span
Text
=
"Cell 1"
/>
</
telerik:Paragraph
>
</
telerik:TableCell
>
<
telerik:TableCell
>
<
telerik:Paragraph
>
<
telerik:Span
Text
=
"Cell 2"
/>
</
telerik:Paragraph
>
</
telerik:TableCell
>
</
telerik:TableRow
>
<
telerik:TableRow
>
<
telerik:TableCell
ColumnSpan
=
"2"
>
<
telerik:Paragraph
>
<
telerik:Span
Text
=
"Cell 3"
/>
</
telerik:Paragraph
>
</
telerik:TableCell
>
</
telerik:TableRow
>
<
telerik:TableRow
>
<
telerik:TableCell
RowSpan
=
"2"
>
<
telerik:Paragraph
>
<
telerik:Span
Text
=
"Cell 4"
/>
</
telerik:Paragraph
>
</
telerik:TableCell
>
<
telerik:TableCell
>
<
telerik:Paragraph
>
<
telerik:Span
Text
=
"Cell 5"
/>
</
telerik:Paragraph
>
</
telerik:TableCell
>
</
telerik:TableRow
>
<
telerik:TableRow
>
<
telerik:TableCell
>
<
telerik:Paragraph
>
<
telerik:Span
Text
=
"Cell 6"
/>
</
telerik:Paragraph
>
</
telerik:TableCell
>
</
telerik:TableRow
>
</
telerik:Table
>
</
telerik:Section
>
</
telerik:RadDocument
>
I kind of based it on one of the sample files called, RadRichTextBoxOverview.xaml , just much simpler.
Is there a way i can edit it without well, constantly printing it to see what it actually looks like?