我在图片框中加载了一个图像。当我点击图像时,会有一些数据(此处不需要)将存储在XML文件中。但问题是当我在图像上单击鼠标时,数据正在重写。相反,我需要添加每次鼠标点击后获得的数据。这是我在MouseClick事件下的程序部分。
private void pictureBox1_MouseClick(object sender, MouseEventArgs e)
{
float u = l[p + 1] - l[p];
float v = m[p + 1] - m[p];
float w = (e.Y - m[p]) / v; //subtract from latitude
float z = (e.X - l[p]) / u; //add to longitude.
float latmin = h[p] - w;
float longmin = j[p] + z;
A1 = e.X - c[p];
A2 = e.Y - d[p];
B1 = c[p + 1] - c[p];
B2 = d[p + 1] - d[p];
A = Math.Sqrt(Math.Pow(A1, 2) + Math.Pow(A2, 2));
B = Math.Sqrt(Math.Pow(B1, 2) + Math.Pow(B2, 2));
dotproduct = A1 * B1 + A2 * B2;
theta = (180 / Math.PI) * Math.Acos( dotproduct / (A * B));
if (e.X < c[p])
{
theta1 = 360 - theta;
}
else
{
theta1 = theta;
}
MessageBox.Show(string.Format(" Latitude:{0}°{1:0.0}'\n Longitude:{2}°{3:0.0}' \n ICAO LOC: {4} {5}", g[p] + (int)latmin / 60, latmin % 60, i[p] + (int)longmin / 60, longmin % 60, textBox1.Text, Math.Abs((int)theta1)));
using (XmlWriter writer = XmlWriter.Create(string.Format("{0}.xml", textBox2.Text)))
{
writer.WriteStartDocument();
writer.WriteStartElement("WayPoints");
writer.WriteStartElement("Latitude");
writer.WriteElementString("Degrees",XmlConvert.ToString( g[p] + (int)latmin / 60));
writer.WriteElementString("Minutes", XmlConvert.ToString(latmin % 60));
writer.WriteEndElement();
writer.WriteStartElement("Longitude");
writer.WriteElementString("Degrees", XmlConvert.ToString(i[p] + (int)longmin / 60));
writer.WriteElementString("Minutes", XmlConvert.ToString(longmin % 60));
writer.WriteEndElement();
writer.WriteStartElement("IcaoLocator");
writer.WriteElementString("Type", textBox1.Text);
writer.WriteElementString("Angle", XmlConvert.ToString(Math.Abs((int)theta1)));
writer.WriteEndElement();
writer.WriteEndElement();
writer.WriteEndDocument();
}
}
XML的文件名取自textbox2中的文本。
请给我一些建议,以便我可以将所有鼠标点击的数据存储在一个文件中。
答案 0 :(得分:2)
这个想法是拥有一个包含文档声明的“master”文件和一个包含内部节点的“child”文件。在这种情况下,您只需将文本附加到子文件,主文件将保持有效。
master.xml文件:
<?xml version="1.0"?>
<WayPoints xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="slave.xmlpart"/>
</WayPoints>
slave.xmlpart:
<WayPoint>
<Latitude>
<Degrees>1</Degrees>
</Latitude>
<Longitude>
<Degrees>1</Degrees>
</Longitude>
</WayPoint>
<WayPoint>
<Latitude>
<Degrees>2</Degrees>
</Latitude>
<Longitude>
<Degrees>2</Degrees>
</Longitude>
<WayPoint>
这将使您受益于Xml标准和文本写入的性能。只是,您必须使用File.AppendText而不是XmlWriter类才能使用从属文件。如果您仍想使用XmlWriter,可以使用临时MemoryStream来构建节点,然后将流的内容附加到从属文件。
[编辑]这里是一个示例代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Xml.Linq;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
EnsureFiles();
Console.WriteLine("Press espace to quit");
ConsoleKeyInfo key;
do
{
key = Console.ReadKey();
Append(key);
}
while (key.Key != ConsoleKey.Escape);
Console.ReadLine();
}
private static void Append(ConsoleKeyInfo key)
{
var keyEvent = new XElement("KeyEvent",
new XElement("Key", new XAttribute("key", key.Key.ToString())),
new XElement("At", DateTime.Now.ToString())
);
File.AppendAllText("slave.xmlpart", keyEvent.ToString());
}
private static void EnsureFiles()
{
if (!File.Exists("slave.xmlpart"))
{
File.WriteAllText("slave.xmlpart", ""); // simply create the file
}
if (!File.Exists("master.xml"))
{
var doc = new XDocument(
new XElement("WayPoints",
new XElement("{http://www.w3.org/2001/XInclude}include",
new XAttribute("href", "slave.xmlpart")
)
)
);
doc.Save("master.xml");
}
}
}
}
但是,似乎Xdocument类不遵循includes,但本文显示了一个解决方案:http://www.catarsa.com/Blog/Kohler-Radim/2010/5/Linq-To-Xml-XInclude
答案 1 :(得分:1)
我将在类中使用XmlDocument
的实例,并在任何鼠标单击时append使用正确的节点。您可以每次将文档保存在磁盘上(效率不高,但如果文件不大则不会发现任何性能下降)或者在某些其他情况下延迟保存(显式按钮或窗口关闭)
答案 2 :(得分:1)
您可以查看使用XDocument,它是System.Xml.Linq命名空间的一部分。这种形式的XML文档使用常见的liq功能为您提供了更容易阅读和修改XML文档的API。 Here's MSDN链接详细说明了它。
要添加节点,您可以执行以下操作:
XDocument xmlDocument = XDocument.Load("FilePath");
XElement parentNode = xmlDocument.Root.Element("ParentNode");
XElement node = new XElement("NodeName");
parentNode.Add(node);
xmlDocument.Save("FilePath");
这是一个简单的例子,并没有实现任何空检查,并假设父节点只有一个实例。
希望有所帮助。
保