Exemplo n.º 1
0
 private bool P_PopulateTable(List <WeaponItem> input)
 {
     TableItemType = input[0].GetType();
     for (int i = 0; i < input.Count; i++)
     {
         tempRow0      = CreateNewRow(input[i]);
         tempRow0.name = input[i].Name;
         tempRow0.AddNewDisplayItem(input[i].Name, Columns[0]);
         tempRow0.AddNewItem(input[i].Category, Columns[1]);
         tempRow0.AddNewItem(input[i].Skill, Columns[2]);
         tempRow0.AddNewItem(input[i].Damage.ToString(), Columns[3]);
         tempRow0.AddNewItem(input[i].Crit.ToString(), Columns[4]);
         tempRow0.AddNewItem(input[i].Range, Columns[5]);
         tempRow0.AddNewItem(input[i].Encumbrance.ToString(), Columns[6]);
         tempRow0.AddNewItem(input[i].HP.ToString(), Columns[7]);
         tempRow0.AddNewItem(input[i].Price.ToString(), Columns[8]);
         tempRow0.AddNewItem(input[i].Rarity.ToString(), Columns[9]);
         tempRow0.AddNewItem(input[i].Special, Columns[10]);
         string nav = Overlord.dControl.BookFromIndex(input[i].Index);
         tempRow0.AddNewItem(nav, Columns[11]);
         tempRow0.SetNavString(nav);
         Rows.Add(tempRow0);
     }
     ResizeAllRows();
     return(true);
 }
Exemplo n.º 2
0
 private bool P_PopulateTable(List <BookItem> input)
 {
     TableItemType = input[0].GetType();
     for (int i = 0; i < input.Count; i++)
     {
         tempRow0      = CreateNewRow(input[i]);
         tempRow0.name = input[i].Name;
         tempRow0.AddNewDisplayItem(input[i].Name, Columns[0]);
         tempRow0.AddNewItem(input[i].System, Columns[1]);
         tempRow0.AddNewItem(input[i].Key, Columns[2]);
         Rows.Add(tempRow0);
     }
     return(true);
 }