Wednesday, May 23, 2007

ListBox control: Right click: No Click events raised

Innen

The following controls do not conform to the standard Click event behavior:

  • Button control
    • Left click: Click
    • Right click: No Click events raised
    • Left double-click: Click, Click
    • Right double-click: No Click events raised
  • CheckBox control
    • Left click: Click
    • Right click: No Click events raised
    • Left double-click: Click, Click
    • Right double-click: No Click events raised
  • RadioButton control
    • Left click: Click
    • Right click: No Click events raised
    • Left double-click: Click, Click
    • Right double-click: No Click events raised
  • TextBox control
    • Left click: Click
    • Right click: No Click events raised
    • Left double-click: Click, DoubleClick
    • Right double-click: No Click events raised
  • ListBox control

    Note The event behavior detailed below happens whether the user clicks on an item or not (that is, a mouse click or double-click anywhere within the ListBox control raises these events).

    • Left click: Click
    • Right click: No Click events raised
    • Left double-click: Click, DoubleClick
    • Right double-click: No Click events raised
  • CheckedListBox control

    Note The event behavior detailed below happens whether the user clicks on an item or not (that is, a mouse click or double click anywhere within the ListBox control raises these events)

    • Left click: Click
    • Right click: No Click events raised
    • Left double-click: Click, DoubleClick
    • Right double-click: No Click events raised
  • ComboBox control

    Note The event behavior detailed below happens whether the user clicks on the edit field, the button, or on an item within the list.

    • Left click: Click
    • Right click: No Click events raised
    • Left double-click: Click, Click
    • Right double-click: No Click events raised
  • RichTextBox control
    • Left click: No Click events raised
    • Right click: No Click events raised
    • Left double-click: No Click events raised
    • Right double-click: No Click events raised
  • ListView control

    Note The event behavior detailed below happens only when the user clicks on the items in the ListView control. No events are raised for clicks anywhere else on the control. In addition to those described below, there are the BeforeLabelEdit and AfterLabelEdit events, which may be of interest to developers wishing to use validation with the ListView control.

    • Left click: Click
    • Right click: Click
    • Left double-click: Click, DoubleClick
    • Right double-click: Click, DoubleClick
  • TreeView control

    Note The event behavior detailed below happens only when the user clicks on the items themselves or to the right of the items in the TreeView control. No events are raised for clicks anywhere else on the control. In addition to those described below, there are the BeforeCheck, BeforeSelect, BeforeLabelEdit, AfterSelect, AfterCheck, and AfterLabelEdit events, which may be of interest to developers wishing to use validation with the TreeView control.

    • Left click: Click
    • Right click: Click
    • Left double-click: Click, DoubleClick
    • Right double-click: Click, DoubleClick

Sunday, May 06, 2007

Net helpmsg

Explains why an error occurred and provides problem-solving information.