The docking advanced layout designer is broken when using Visual Studio 2019 Version 16.8.3, some buttons are missing so cannot add ToolWindows etc.
If copying from an old template from net 4.6, the initial docking layout works but dragging a window does not show the dock graphics overlay to dock anywhere.
Essentially docking looks broken on net5.0 (just checked and it's also broken on netcore3.1)
Hi,
When I have a window in floating mode then keyboard tabbing will tab around the controls within the window, rolling around from the last control to the first control.
However, when the same window is docked and I tab, the focus 'escapes' from the window and enters another area.
Is there a way to keep the focus within a docked window on tab?
Hi,
I want to add the Previous and Next buttons to a tab strip on the RadDock.
I followed https://www.telerik.com/forums/660191-dock-host-window-scrollbars to get the buttons visible, however they are just disabled and do not have any functionality to them.
The item list has multiple items in it, so there's definitely items to scroll through.
What am I missing?
Thanks,
Dan
Hello
I want if toolwindow is floating mode, toolwindow title text to be in the middle.
if (mapDockWindow.IsInFloatingMode)
{
// What should I do?
}
Hi.
I want change RadDock menu bar back color and height.
I can't speak english very well.
So I attach the file.
Hello,
Probably little bit strabeg question:
Is it possible to run some external WinForms exe in DocumentWindow?
Thank you.
Hello.
I want to know about how to visible the minimizeButton in 'Floating Window'.
private void CtrlWorkbenchDoc_FloatingWindowCreated(object sender, FloatingWindowEventArgs e)
{
e.Window.FormElement.TitleBar.MinimizeButton.Visibility = ElementVisibility.Visible;
e.Window.FormElement.TitleBar.CloseButton.Visibility = ElementVisibility.Collapsed;
e.Window.ControlBox = true;
e.Window.MaximizeBox = true;
e.Window.MinimizeBox = true;
}
I wrote the above code but minimizeButton were not showed in 'Floating Window'.
So, I want to know about another ways.
Thanks.