5

我有一个winforms包含 3 个按钮的小程序。到目前为止,该程序允许用户通过单击相应的按钮来更改另一个按钮的颜色,而第三个按钮还没有做任何事情。我想要做的是让用户保存对表单所做的更改(保存表单状态)。因此,当表单重新打开时,它会以与保存时相同的状态打开。

我希望我清楚我在追求什么

这是表单的可视化:

在此处输入图像描述

如果有任何帮助,我到目前为止的代码:

public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            btnToColor.Text = "";
        }

        int c = 0;
        private void btnColorSwap_Click(object sender, EventArgs e)
        {
            if (c == 0)
            {
                btnToColor.BackColor = Color.Yellow;
                c++;

            }

            else if (c == 1)
            {
                btnToColor.BackColor = Color.YellowGreen;

                c++;
            }

            else if (c == 2)
            {
                btnToColor.BackColor = Color.LimeGreen;

                c = 0;
            }

        }
    }
4

3 回答 3

7

这对您来说可能/可能不会更容易。

首先创建一个类来保存你的状态:

public class MyFormState {
    public string ButtonBackColor { get; set; }
}

现在,Form用这个对象为你声明一个成员:

public partial class Form1 : Form {
    MyFormState state = new MyFormState();

在表单加载时,检查配置是否存在,然后加载它:

private void Form1_Load(object sender, EventArgs e) {
    if (File.Exists("config.xml")) {
        loadConfig();
    }

    button1.BackColor = System.Drawing.ColorTranslator.FromHtml(state.ButtonBackColor);
}

private void loadConfig() {
    XmlSerializer ser = new XmlSerializer(typeof(MyFormState));
    using (FileStream fs = File.OpenRead("config.xml")) {
        state = (MyFormState)ser.Deserialize(fs);
    }
}

当您的表单关闭时..保存配置:

private void Form1_FormClosing(object sender, FormClosingEventArgs e) {
    writeConfig();
}

private void writeConfig() {
    using (StreamWriter sw = new StreamWriter("config.xml")) {
        state.ButtonBackColor = System.Drawing.ColorTranslator.ToHtml(button1.BackColor);
        XmlSerializer ser = new XmlSerializer(typeof(MyFormState));
        ser.Serialize(sw, state);
    }
}

然后您可以将成员添加到您的状态类,它们将被写入 config.xml 文件。

于 2013-01-31T02:12:41.140 回答
6

如果您查看项目属性页面,您可以添加一个设置文件。

要使用代码中的设置,您可以执行以下操作:

Properties.Settings.Default.SettingName

请记住,这些设置是本地的,需要在每台机器上指定

示例代码:

    private void Form1_FormClosing(object sender, FormClosingEventArgs e)
    {
        Properties.Settings.Default.btn1 = button1.UseVisualStyleBackColor ? Color.Transparent : button1.BackColor;
        Properties.Settings.Default.btn2 = button1.UseVisualStyleBackColor ? Color.Transparent : button2.BackColor;
        Properties.Settings.Default.btn3 = button1.UseVisualStyleBackColor ? Color.Transparent : button3.BackColor;
    }

    private void Form1_Load(object sender, EventArgs e)
    {

        if (Properties.Settings.Default.btn1 != Color.Transparent) button1.BackColor = Properties.Settings.Default.btn1;
        if (Properties.Settings.Default.btn2 != Color.Transparent) button1.BackColor = Properties.Settings.Default.btn2;
        if (Properties.Settings.Default.btn3 != Color.Transparent) button1.BackColor = Properties.Settings.Default.btn3;
    }

这是 MSDN 上设置类的链接 http://msdn.microsoft.com/en-us/library/aa730869(VS.80).aspx


属性页

属性设置页面

于 2013-01-31T01:34:12.157 回答
0

通常在存储用户界面设置时,标准方法是使用 XML 文件保存或加载设置我做了这个例子,使用 xml 保存用户界面组件希望它有用

https://www.dropbox.com/s/1j1qbe7udqxizr6/4.XMLConfigurationEditor.rar?dl=0

于 2015-06-10T15:16:24.863 回答