private void ListViewActionsSelectedIndexChanged(object sender, EventArgs e)
{
bool enable = this.listViewActions.SelectedItems.Count > 0;
this.buttonEditAction.Enabled = enable;
this.buttonRemoveAction.Enabled = enable;
this.contextButtonActionEdit.Enabled = enable;
this.contextButtonActionRemove.Enabled = enable;
}