protected void OnSubItemClicked(SubItemEventArgs e)
		{
			if (SubItemClicked != null)
				SubItemClicked(this, e);
		}
 private void lsConnections_SubItemClicked(object sender, SubItemEventArgs e)
 {
     // Start editing.
     lsConnections.StartEditing(editBox, e.Item, e.SubItem);
 }
		protected void OnSubItemBeginEditing(SubItemEventArgs e)
		{
			if (SubItemBeginEditing != null)
				SubItemBeginEditing(this, e);
		}