Ejemplo n.º 1
0
 void AddFrequentItemsToListViewFrequentItems(object sender, EventArgs e)
 {
     FrequentItems_Item_ListBox.Items.Clear();
     apr.Support = Int32.Parse(AddSupport_TextBox.Text);
     apr.GenerateFrequents();
     foreach (var i in apr.GetFrequentItemsId())
     {
         FrequentItems_Item_ListBox.Items.Add(apr.distinctItems.Items[i].Text);
     }
 }