dennismagno / metroframework-modern-ui

My humble attempt to bring the new Modern UI alias Metro UI of Windows 8 to .NET Windows Forms applications.
http://dennismagno.github.io/metroframework-modern-ui
Other
861 stars 1.08k forks source link

DateTime ShowUpDown #75

Open Miels opened 5 years ago

Miels commented 5 years ago

The ShowUpDown Function is not work. noname Any suggestions?

mercedesmiguel01 commented 5 years ago

*I am not sure but, seems like the direct way its not working right, my possible assumption *is that maybe it is not directly activated trying to force it by the object's XML and try to activate it manually, I know it sounds old-fashioned but it could work to get out of the asusnto in what they update the code.

I'm sorry to delay so much to answer...

2018-07-20 0:05 GMT-04:00 Miels notifications@github.com:

The ShowUpDown Function is not work. [image: noname] https://user-images.githubusercontent.com/6791721/42982698-21a31932-8c15-11e8-9343-715812c54fc8.jpg Any suggestions?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/dennismagno/metroframework-modern-ui/issues/75, or mute the thread https://github.com/notifications/unsubscribe-auth/AQOx1zYo-_AzmBsmXdxpLeq3zUbSbjZQks5uIVcmgaJpZM4VXbMF .

thomasmcneill commented 5 years ago

Is there any status on the ShowUpDown? In my case the down arrow is still present and it shows the calendar when alI want is time.

martinslae commented 4 years ago

ShowUpDown tem um bug. Ele não aparece. Quando preciso usar um controle de Hora não da pra usar o metroframework, tem que ser o padrão do windowsForms mesmo. Infelizmente

xorrot16 commented 1 year ago

its because its Disabled!

replace the method ShowUpDown with these lines in MetroDateTime.cs:

    public new bool ShowUpDown
    {
        get { return base.ShowUpDown; }
        set { base.ShowUpDown = value; }
    }
xorrot16 commented 1 year ago

I did a pull request https://github.com/dennismagno/metroframework-modern-ui/pull/134