如何使用构建操作“内容”写入文件

时间:2014-02-14 03:52:15

标签: c# windows-phone-8

我的解决方案中有一个名为“Voicecmd.xml”的文件,需要以编程方式写入。我该怎么做?

用于更新/编辑voicecmd的代码以及我被卡住的地方......

async void updateall()
{
    XDocument xDoc = XDocument.Load("voicecmd.xml");
    var ns = XNamespace.Get("http://schemas.microsoft.com/voicecommands/1.0");
    texb.Text = xDoc.Root.Element(ns + "CommandSet").Element(ns + "CommandPrefix").Value;
}

    private async void ttcc(object sender, TextChangedEventArgs e)
    {

        XDocument xDoc = XDocument.Load("voicecmd.xml");
        var ns = XNamespace.Get("http://schemas.microsoft.com/voicecommands/1.0");
        xDoc.Root.Element(ns + "CommandSet").Element(ns + "CommandPrefix").Value = texb.Text;
        // xDoc.Save(StreamWriter);
    }

1 个答案:

答案 0 :(得分:0)

似乎你甚至可以写入项目文件。这是一个link

否则,您始终可以将其复制到IsolatedStorage并写入。