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
180
Embedding a UltraCalendarCombo in Winform toolstrip
posted

Is it possible to embed the UltraCalendarCombo in the windows toolstrip.

I do this for a Control

public class ToolStripWrapper<ControlType> : ToolStripControlHost

    where ControlType : System.Windows.Forms.Control, new()

  {

     public ToolStripWrapper() : base( new ControlType() ){}

    public new ControlType Control

    { get { return base.Control as ControlType; }}  

 }

Can something like this be done for the UltraCalendarCombo -since  it doesnt inherit from Control

Also is it possible to change the text on the Today button and trap the click event to point to date which is not Today's date?

 

Thanks