[]
You can disable the user’s ability to dock in certain directions inside the PickerLoading event. For example, to disable docking on the left outer edge of a C1DockControl perform the following steps.
Add a C1DockControl and some child C1DockTabControls to your page.
Subscribe to the PickerLoading event on C1DockControl.
<c1:C1DockControlName="dockControl1"PickerLoading="dockControl1_PickerLoading" />
In code, set any number of the PickerLoadingEventArgs properties you wish to disable showing certain parts of the dock picker. For example, to disable docking on the left outer edge you would set the e.ShowLeftOuterPart property to False.
private void dockControl1_PickerLoading(object sender, PickerLoadingEventArgs e)
{
// disable docking on the outer left edge
e.ShowLeftOuterPart = false;
}
