BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
Hi Stephan,
Sorry for the delay being caused.
We have prepared a sample to achieve your requirement. In the sample, when the pointer is pressed and released on SfGridSplitter we are storing the ActualWidth of element on right side of the SfGridSplitter. When restore button is clicked the SfGridSplitter is moved programmatically using MoveSplitter(double change) method with the stored change value.
The MoveSplitter(double change) method will be available from our v11.3.0.32 Service Pack release. You can download it from following location,
Please let us know whether the provided sample meets your requirement.
Regards,
Victory
public GridSplitterDemo()
{
this.InitializeComponent();
Loaded += GridSplitterDemo_Loaded;
}
void GridSplitterDemo_Loaded(object sender, RoutedEventArgs e)
{
verticalSplitter.MoveSplitter(1.0);
}
This results in a Null Reference exception. Please help.
Nico Dekker (Priva BV)
The Netherlands