示例#1
0
        public StudentCheck(string _record_id)
        {
            this.record_id    = _record_id;
            this.formToNotify = Program.frmFloat;//通知主菜单显示特定信息

            this.textList = new List <string>();
            this.textList.Add("通过");
            this.textList.Add("迟到");
            this.styleList = new List <MetroColorStyle>();
            this.styleList.Add(MetroColorStyle.Orange);
            this.styleList.Add(MetroColorStyle.Blue);
        }
示例#2
0
        public frmRTTest(I_mini_form_show_notify _notify_form)
        {
            InitializeComponent();
            this.formToNotify = _notify_form;
            this.test_id      = string.Format("{0}{1}", "test_id", DateTime.Now.ToString("yyyyMMddHHmmss"));
            this.FormClosing += new FormClosingEventHandler(frmRTTest_FormClosing);

            this.textList = new List <string>();
            this.textList.Add("A 答题完毕");
            this.textList.Add("B 尚未选择");
            this.styleList = new List <MetroColorStyle>();
            this.styleList.Add(MetroColorStyle.Green);
            this.styleList.Add(MetroColorStyle.Blue);
        }
        public RealtimeInteractive(I_mini_form_show_notify _notify_form)
        {
            this.formToNotify = _notify_form;

            this.textList = new List <string>();
            this.textList.Add("A 完全明白");
            this.textList.Add("B 一知半解");
            this.textList.Add("C 不知所云");
            this.textList.Add("D 尚未选择");
            this.styleList = new List <MetroColorStyle>();
            this.styleList.Add(MetroColorStyle.Green);
            this.styleList.Add(MetroColorStyle.Orange);
            this.styleList.Add(MetroColorStyle.Red);
            this.styleList.Add(MetroColorStyle.Blue);
        }