示例#1
0
 public AssessmentTreeView()
     : base()
 {
     myHelper = new DefaultViewHelper();
     this.BeforeCheck += new TreeViewCancelEventHandler(AssessmentTreeView_BeforeCheck);
     this.AfterCheck += new TreeViewEventHandler(AssessmentTreeView_AfterCheck);
 }
示例#2
0
 public AssessmentComboBox()
     : base()
 {
     myHelper = new DefaultViewHelper();
     this.DropDownStyle = ComboBoxStyle.DropDownList; // non editable list
     this.SelectionChangeCommitted += new EventHandler(AssessmentComboBox_SelectionChangeCommitted);
 }
示例#3
0
 public AssessmentXmlCheckBox()
     : base()
 {
     myHelper = new DefaultViewHelper();
     this.CheckBoxes = true;
     this.View = View.Details;
     this.ItemCheck += new ItemCheckEventHandler(AssessmentCheckBox_ItemCheck);
 }