1
votes

I have a text file in which I have below shown characters in S - shape.

    XXXXXXXXXXX
    XXX
    XXX
    XXXXXXXXXXX
            XXX
            XXX
    XXXXXXXXXXX

How can we draw or paste this type of 'character image' in a wpf canvas? When the WPF app starts, this "S" image will be displayed in the canvas. Can we copy all these characters from the text file and paste into the canvas ?? Is that possible ? if yes how ? If no - then any way to do that ?

please help.

of course it's possible, can you imagine it wouldn't be? share what you've done and the specific problem you're facing with your approach - Sten Petrov
And why exactly a Canvas? Paste it into a TextBlock with a monospaced font. - Clemens