1

这是我的代码

private void make_Book(int x, int y, string name)
{
    #region Creating Book

    // this code is initializing the book(button)
    Button book1 = new Button();
    Image img = button1.Image;
    book1.Image = img;
    book1.Name = name;
    book1.Height = img.Height;
    book1.Width = img.Width;
    book1.Location = new Point(44 + x, 19 + y);            
    book1.Click += new EventHandler(myClickHandler);
    groupBox1.Controls.Add(book1);

    #endregion            
}

每次单击按钮时,此代码都会创建一个按钮,现在我想保存创建的按钮及其属性,以便它们可以在每次应用程序启动时出现..

在 C# Visual Studio 2010 中编码...

4

3 回答 3

2

一种解决方案可能是使用StringCollection 用户设置编辑:在您的评论中,您说关闭应用程序时不会保留此设置。这不是真的,因为这是使用用户设置的全部意义......)。

在每一行中,您需要将控件的位置和名称保存为字符串,例如

120;140;MyName

当用户添加一个新按钮时,StringCollection像这样创建一个项目:

private void make_BookButtonAndStore(int x, int y, string name)
{
    make_Book(x,y,name);

    Properties.Settings.Default.ButtonStringCollection.Add(String.Format("{0};{1};{2}", book1.Location.X, book1.Location.Y, book1.Name));
    Properties.Settings.Default.Save();
}

private void make_Book(int x, int y, string name)
{
    // this code is initializing the book(button)
    Button book1 = new Button();
    Image img = button1.Image;
    book1.Image = img;
    book1.Name = name;
    book1.Height = img.Height;
    book1.Width = img.Width;
    book1.Location = new Point(44 + x, 19 + y);            
    book1.Click += new EventHandler(myClickHandler);
    groupBox1.Controls.Add(book1);
}

然后,您需要StringCollection通过读取每一行,提取位置和名称并make_book再次调用来从每个项目创建按钮的代码(不是我的新make_BookButtonAndStore方法,因为这会使按钮加倍)。

请注意,您可能需要在添加第一个按钮之前StringCollection使用关键字创建。new

编辑
解释如何创建这样的设置:转到您的项目属性到“设置”选项卡。创建一个名为的新设置ButtonStringCollection,选择类型System.Collections.Specialized.StringCollection和范围User

在表单的构造函数中,添加以下行:

if (Properties.Settings.Default.ButtonStringCollection == null)
    Properties.Settings.Default.ButtonStringCollection = new StringCollection();

然后,添加我上面提供的代码来创建按钮。此外,在表单的Load事件处理程序中,添加如下内容:

foreach (string line in Properties.Settings.Default.ButtonStringCollection)
{
    if (!String.IsNullOrWhitespace(line))
    {
        // The line will be in format x;y;name
        string[] parts = line.Split(';');
        if (parts.Length >= 3)
        {
            int x = Convert.ToInt32(parts[0]);
            int y = Convert.ToInt32(parts[1]);

            make_Book(x, y, parts[2]);
        }
    }
}
于 2012-05-24T14:42:16.540 回答
0

当您调用make_Book方法时,您可以将输入参数保存到数据库或您的应用程序当前使用的其他存储中。当应用程序启动时,您可以通过调用make_Book 保存在应用程序存储中的值的方法来加载所有按钮。

于 2012-05-24T14:40:41.603 回答
0

这是如何保存加载 xml 的示例。

public static void Save(string x, string y, string name)
    {
        if (!Directory.Exists(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\appName"))
        {
            Directory.CreateDirectory(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\appName");
        }


        XmlDocument xmlDocument = new XmlDocument();

        string xml = string.Format(@"<?xml version='1.0' encoding='utf-8'?><button><x>{0}</x><y>{1}</y><name>{2}</name></button>", x, y, name);

        xmlDocument.LoadXml(xml);

        xmlDocument.Save(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\appName\\button.xml");
    }

    public static Dictionary<string,string> Load()
    {
        string address = "";

        if (!File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\appName\\button.xml"))
        {
            return new Dictionary<string,string>(){{"x",""},{"y",""},{"name",""}};
        }

        XmlDocument xmlDocument = new XmlDocument();
        xmlDocument.Load(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\appName\\button.xml");

        XmlNode button = xmlDocument.GetElementsByTagName("button").Item(0);

        XmlNode nameNode = button.SelectSingleNode("name");
        XmlNode xNode = button.SelectSingleNode("x");
        XmlNode yNode = button.SelectSingleNode("y");

        return new Dictionary<string, string>() { { "name", nameNode.InnerText }, { "x", xNode.InnerText }, { "y", yNode.InnerText } };
    }
于 2012-05-24T14:58:22.453 回答