Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
30
RTF in XamDataGrid
posted

I would like to display a formatted RTF text ex. {\rtf1 \b Hello \b0 World} in a XamDataGrid cell. I have a collection bound to the grid. The collection item looks more or less like that:

public class GridItem
{
    public string RtfText {get; set; }
}

If possible, I would like to edit the RTF directly in the cell.

A little sample would be perfect.