Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WinForms > Forms, Dialogs, TitleBar, StatusStrip > RadStatusStrip disable resizing

Not answered RadStatusStrip disable resizing

Feed from this thread
  • Juergen Holzer avatar

    Posted on Sep 5, 2011 (permalink)

    Hello!

    I'm using the RadControls 2011Q2 and I want to disable the ability to resize the Form with the RadStatusStrip. I have already disabled the SizingGrip, though I can resize the Form.

    Is there a way using the StatusStrip and the window can only be resized as normal Form-behavior?

    Kind regards
    Juergen

    Reply

  • Stefan Stefan admin's avatar

    Posted on Sep 8, 2011 (permalink)

    Hi Juergenm,

    You can disable the sizing functionality by removing the grip element from RadStatusStripElement. Please consider the following code snippet:

    foreach (RadElement el in radStatusStrip1.StatusBarElement.Children)
    {
        RadGripElement grip = el as RadGripElement;
        if (grip != null)
        {
            radStatusStrip1.StatusBarElement.Children.Remove(grip);
            break;
        }
    }

    I hope that you find this information helpful. Should you have any other questions, do not hesitate to contact us.
     
    All the best,
    Stefan
    the Telerik team

    Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

    Reply

  • Juergen Holzer avatar

    Posted on Sep 13, 2011 (permalink)

    Thank you very much for your reply! It works as expected.

    Kind Regards
    Juergen

    Reply

  • Stefan Stefan admin's avatar

    Posted on Sep 15, 2011 (permalink)

    Hi Juergen,

    I am glad that I could help. If there is anything else we can assist you with, do not hesitate to contact us.
     
    Kind regards,
    Stefan
    the Telerik team

    Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WinForms > Forms, Dialogs, TitleBar, StatusStrip > RadStatusStrip disable resizing
Related resources for "RadStatusStrip disable resizing"

[ Features | Demos | Documentation | Knowledge Base | Telerik TV | Code Library | Step-by-step Tutorial | Blogs | Self-Paced Trainer ]