[K/3Cloud] 代码中设置某个字段必录

Control ctl = this.GetControl(fieldKey);

        FieldEditor editCtl = ctl as FieldEditor;

         if (editCtl != null)

         {

                editCtl.MustInput = mustInput;

         }
使用视图类获得指定字段对应的控件,并设置控件的MustInput属性。
原文地址:https://www.cnblogs.com/fyq891014/p/4188837.html