Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1640
maximizing floating control in second display
posted

is it possible for an UltraDockManager to maximize floating control in second display? Just like VS2010 does.

Parents Reply
  • 230
    posted in reply to Hristo Goshev

    Thank Hristo for your answer. It is very helpful to me!

    And I have a question.

    How can i set ButtonStyle of ButtonUIElement. ButtonStyle of ButtonUIElement is read only property. so I dervied ButtonUIElement class and override ButtonStyle property. as following code. but the following code doesn't work.

    public class CButtomUIElementEx : Infragistics.Win.ButtonUIElement
    {
        private UIElementButtonStyle buttonStyle = UIElementButtonStyle.OfficeXPToolbarButton;

        public UIElementButtonStyle StyleOfButton
       {
           get { return buttonStyle; }
           set { buttonStyle = value; } 
        }

        public override UIElementButtonStyle ButtonStyle
       {

           get { return buttonStyle; }
        }

         public CButtomUIElementEx(UIElement parent)
               : base(parent)
        {
        }

    }

    I wanna change style of ButtonUIElement. How can i do it? 

Children