예제 #1
0
        private void LoadData()
        {
            Lv.Items.Clear();
            string[] profiles = Ini.GetKeys("profiles");

            if (profiles == null)
            {
                return;
            }

            for (int i = 0; i < profiles.Length; i++)
            {
                AddProfile(profiles[i]);
            }

            UpdateStatus();
        }
예제 #2
0
 public static string[] GetKeys(string section)
 {
     return(xs.GetKeys(section));
 }