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