I have to 2 PropertyGrid control in one big grid, however I am having issues to sync the behaviour for both controls
e.g each propertygrid control has its own scroll bar and search textbox
I would like to group those 2 controls as 1 as how beyondcompre or any other diff tool do
thanks
George
e.g each propertygrid control has its own scroll bar and search textbox
I would like to group those 2 controls as 1 as how beyondcompre or any other diff tool do
thanks
George
<Grid x:Name="LayoutRoot" Background="{ui:ThemeColor RioBackgroundBrush}"><br> <Grid.ColumnDefinitions><br> <ColumnDefinition Width="0.5*"></ColumnDefinition><br> <ColumnDefinition Width="0.5*"></ColumnDefinition><br> </Grid.ColumnDefinitions><br> <telerik:RadPropertyGrid x:Name="columnPropertyGridSource" Item="{Binding SourceCodeItem}" SearchBoxVisibility="Hidden" Grid.Column="0" ui:DebugBinding.Break="{Binding SourceCodeItem}" AutoGeneratePropertyDefinitions="True" DescriptionPanelVisibility="Hidden"/><br> <telerik:RadPropertyGrid x:Name="columnPropertyGridDestination" Item="{Binding DestinationCodeItem}" Grid.Column="1" SearchBoxVisibility="Hidden" AutoGeneratePropertyDefinitions="True" DescriptionPanelVisibility="Hidden"/><br> </Grid>