|
<syncfusion:TabControlExt Grid.Row="1">
<syncfusion:TabItemExt Name="tabOutbound" Header="JSON">
<Grid>
<syncfusion:EditControl
Name="editJSON"
Background="White"
DocumentLanguage="Custom"
FontFamily="Verdana"
IsReadOnly="True"
Text="{Binding SelectedModel.ResourceJson, Mode=TwoWay}" />
</Grid>
</syncfusion:TabItemExt>
<syncfusion:TabItemExt Name="tabInbound" Header="XML">
<Grid>
<syncfusion:EditControl
Name="editXML"
Background="White"
DocumentLanguage="XML"
FontFamily="Verdana"
IsReadOnly="True"
Text="{Binding SelectedModel.ResourceXml, Mode=TwoWay}" />
</Grid>
</syncfusion:TabItemExt>
</syncfusion:TabControlExt> |