Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hi
Can you tell me how to hide the Close (X) button on a floating window?
I can hide the minimize and maximize buttons but not the close button.
As a workaround I tried to cancel the FloatingWindowClosing event with 'e:Cancel = true' but it stills closes.
Thanks
Tung
private
void
RadDock1_FloatingWindowCreated(
object
sender, Telerik.WinControls.UI.Docking.FloatingWindowEventArgs e)
{
var wnd = e.Window
;
wnd.ControlBox =
false
}
Thanks, Dimitar!
I thought there'd be a property, I just didn't know which one after it's different to DocumentWindow and ToolWindow