Posted 15 May 2020, 5:46 am EST
Hi,
I want to hide center dock point of DockTabControl. Please help me to accomplish this.
Thanks and Regards,
Vinoth Kumar Ravi
Forums Home / ComponentOne / WPF Edition
Posted by: vinothkumar.r2210 on 15 May 2020, 5:46 am EST
Posted 15 May 2020, 5:46 am EST
Hi,
I want to hide center dock point of DockTabControl. Please help me to accomplish this.
Thanks and Regards,
Vinoth Kumar Ravi
Posted 18 May 2020, 3:55 am EST
Hi Vinoth,
To disable certain dock position, handle the PickerLoading event of C1DockControl. To disable the central dock position, set the e.ShowOverInnerPart to false, as follows:```
private void _dock_PickerLoading(object sender, C1.WPF.Docking.PickerLoadingEventArgs e)
{
e.ShowOverInnerPart = true;
}
Ruchir