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.
XAML |
Copy Code
|
---|---|
<c1:C1DockControlName="dockControl1"PickerLoading="dockControl1_PickerLoading" /> |
C# |
Copy Code
|
---|---|
private void dockControl1_PickerLoading(object sender, PickerLoadingEventArgs e) { // disable docking on the outer left edge e.ShowLeftOuterPart = false; } |