Flat NumericUpDown
-
I'm trying to set NumericUpDown control to Flatsyle. Setting Borderstyle as FixedSingle effects only to the numberbox. Is there a way to set also the up/down buttons to flatstyle? jtpaa
As far as i know, no. Changing
BorderStyle
affects only on container. If you would like to changeBorderStyle
to the buttons, you have to create customNumericUpDown
control. See: [Creating a NumericUpDown control from scratch](https://www.codeproject.com/Articles/509824/Creating-a-NumericUpDown-control-from-scratch) [Extended NumericUpDown Control](https://www.codeproject.com/Articles/30899/Extended-NumericUpDown-Control) [NumericUpDown Custom Control with Theme and UI Automation Support Sample](https://technet.microsoft.com/pl-pl/library/ms771573(v=vs.90).aspx)