What is the good practice to name the control " Numeric Up down" ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ammarhassan48
    New Member
    • Mar 2014
    • 3

    What is the good practice to name the control " Numeric Up down" ?

    I'm working on a C# project.I'm using different types of controls in project.There is a confusion to name the control "numeric updown", what is the best naming convention for it ? I want expert opinion . Thanks.
  • adriancs
    New Member
    • Apr 2011
    • 122

    #2
    use a prefix, can be anything. but consistent.

    For example:

    nudBookCount
    nudTotalMan
    nudTotalDays

    or

    nmBookCount
    nmTotalMan
    nmTotalDays

    Comment

    Working...