Exemplo n.º 1
0
        public void populateChat(string result)
        {
            GridFiller.PurgeAllGrid(ChatStack);
            Dictionary <string, List <string> > dictionary = FormatFunctions.createValuePairs(FormatFunctions.SplitToPairs(result));

            if (dictionary.Count > 0)
            {
                for (int i = 0; i < dictionary["Message"].Count; i++)
                {
                    string[] s = new string[] { FormatFunctions.PrettyDate(dictionary["Timestamp"][i]) + ":" + dictionary["FName"][i] + ":" + FormatFunctions.PrettyDate(dictionary["Message"][i]) };
                    GridFiller.rapidFill(s, ChatStack);
                }
            }
        }
Exemplo n.º 2
0
 public void PurgeCells()
 {
     GridFiller.PurgeAllGrid(dataGrid);
 }
Exemplo n.º 3
0
 public void PurgeCells()
 {
     GridFiller.PurgeAllGrid(TSection);
 }