Example #1
0
    private void SetBaller()
    {
        ballerGrid.ClearCustomGrid();
        string str = iptUser.value.Trim(' ');

        string[]      arr     = str.Split(',');
        List <object> listObj = new List <object>();

        for (int i = 0; i < arr.Length; i++)
        {
            listObj.Add(arr[i]);
        }
        ballerGrid.AddCustomDataList(listObj);
    }
Example #2
0
 public void Clear()
 {
     m_gird.ClearCustomGrid();
 }