-2

I want to make something like a XAML Viewer where I Input a XAML Code Graphic over a String and Output in a Viewer.

The Rectangle code should not be directly in the scroll viewer, rather issue over a string...but I dont now how I can do it...

        <ScrollViewer Grid.Column="1"  HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Name="viewer" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto" >

                <Rectangle Name="Rectangle" Height="20" Width="30" Fill="GreenYellow" />

        </ScrollViewer>
Q-keY
  • 3
  • 1

1 Answers1

0

Download and use KAXAML, it does exactly what you need... If you still want to make your own XAML viewer/editor, download KAXAML source code, it will have all the code you need to get started...

Dean Kuga
  • 11,878
  • 8
  • 54
  • 108
  • I dont really understand the KAXAML Source Code... Yes, I want to make my own viewer/editor... – Q-keY Jul 01 '14 at 22:16