美文网首页
C#&WPF 自用命名规范

C#&WPF 自用命名规范

作者: 土DOU吹雪 | 来源:发表于2019-10-11 10:02 被阅读0次

    1.常量命名
    命名时以 “k” 开头, 大小写混合:const int kDaysInAWeek = 7;

    2.函数命名
    命名时用 “动词” + “名词” 的形式,动词小写,名词首字母大写,如:
    openSerialPort、transmitData。

    3.事件命名
    命名时用 “动词” + “名词” + “控件名” + “事件类型” 的方式,动词小写,其余首字母大写,如:
    openSerialPort_Button_Click。

    4.变量命名
    命名时用小写字母,通过下划线 “_” 间隔。如 aaa_bbb。

    5.xaml 中的控件命名
    命名时用小写字母,通过下划线 “” 间隔,最后以 “控件名” + 下划线 “” 结尾。如 aaa_bbb_combobox_,ccc_ddd_button_。

    6.类命名
    驼峰命名,如 MyClass,MyHyperSlashClass

    相关文章

      网友评论

          本文标题:C#&WPF 自用命名规范

          本文链接:https://www.haomeiwen.com/subject/wfqtmctx.html