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.