我的解决方案中有一个名为“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);
}