解決問題:從打開的列表內(nèi)(有可能一個單子多行),去重取得單據(jù)的內(nèi)碼;
///
/// 菜單點(diǎn)擊事件,表單插件同樣適用
///
///
public override void BarItemClick(BarItemClickEventArgs e)
{
switch (e.BarItemKey)
{
//case "TBDELETE": 列表工具欄按鈕事件,通過按鈕Key[大寫]來區(qū)分那個按鈕事件
case "tbDelete"://刪除按鈕,執(zhí)行刪除相應(yīng)的會員券信息(會員檔案)中;
if (this.ListView.SelectedRowsInfo.Count > 0)
{
List
ListSelectedRowCollection dstr4 = this.ListView.SelectedRowsInfo;
IEnumerable
foreach (string dstr2 in dstr5.Distinct())
{ BillCommon.Delmemq(this.Context, dstr2); }
}
else
{ this.View.ShowMessage("沒有選擇任何的行數(shù)據(jù)!"); }
break;
default:
break;
}
}