BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi I try to add a vertical row in the Syncfusion SampleBrowser app:
I added a column with width 25 and try to
use GridSplitter to Splitt the cell with the two smilies again.
The problem is, that Grid.Column="1" is not allowed and the error "Specified argument was out of the range of valid values. Parameter name: index.
Has anyone an idea?
Thanks,
Stephan
<Grid Grid.Row="2" Background="LightCoral">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition Width="25" /> The column I added and want to use for vertical split.
<ColumnDefinition />
</Grid.ColumnDefinitions>
<input:SfGridSplitter Grid.Column="1"
VerticalAlignment="Stretch"
ShowsPreview="{Binding ElementName=chk, Path=IsChecked}"/>
Here starts the Path Fill...for the two smilies.
</Grid>