コード例 #1
0
ファイル: MainForm.cs プロジェクト: huhudage/CsdTool
        // 应用本地设置
        private void applyLocalConfig()
        {
            srcPathInput.Text = LocalConfig.GetInstance().Get <String>("srcPath");
            dstPathInput.Text = LocalConfig.GetInstance().Get <String>("dstPath");

            float defaultScale = 1.0f;

            scaleInput.Text = defaultScale.ToString("0.0");

            imagePathInput.Text = "animation";
        }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: huhudage/CsdTool
 private void dstPathInput_TextChanged(object sender, EventArgs e)
 {
     LocalConfig.GetInstance().Set("dstPath", dstPathInput.Text);
 }