[quote]Dess said:Hello Mohammad,
Thank you for writing back.
Indeed, the title bar is collapsed. Autohiding functionality for the title bar is not supported out of the box. You can handle the MouseMove event of the form and make the title bar visible when the cursor is close to the title bar:
Thank you for writing back.
Indeed, the title bar is collapsed. Autohiding functionality for the title bar is not supported out of the box. You can handle the MouseMove event of the form and make the title bar visible when the cursor is close to the title bar:
private
void
Form1_MouseMove(
object
sender, MouseEventArgs e)
{
if
(
this
.WindowState == FormWindowState.Maximized)
{
if
(e.Y < 20)
{
this
.FormElement.TitleBar.Visibility = Telerik.WinControls.ElementVisibility.Visible;
}
}
}
[/quote]
thanks Dess.
that is nice idea!!