Esempio n. 1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="item"></param>
 protected void OnItemClicked(Item item)
 {
     if (this.ItemClicked != null)
     {
         ItemClicked_EventArgs oArgs = new ItemClicked_EventArgs(item);
         this.ItemClicked(this, oArgs);
     }
 }
Esempio n. 2
0
		protected void OnItemClicked(Item item)
		{
			if(this.ItemClicked != null){
				ItemClicked_EventArgs oArgs = new ItemClicked_EventArgs(item);
				this.ItemClicked(this,oArgs);
			}
		}
Esempio n. 3
0
 /// <summary>
 /// OutlookBar Click
 /// </summary>
 private void wOutlookBar_ItemClicked(object sender, LumiSoft.UI.Controls.WOutlookBar.ItemClicked_EventArgs e)
 {
     MessageBox.Show(e.Item.Caption);
 }