コード例 #1
0
        private void Form1_Load(object sender, EventArgs e)
        {
            Hashtable properties = PropertiesUtil.Load("./cfg.txt");

            if (properties != null)
            {
                this.username.Text = (string)properties["username"];
                this.password.Text = (string)properties["password"];
            }
        }