WriteValue() public method

public WriteValue ( string Path, string ValueSection, double Value ) : void
Path string
ValueSection string
Value double
return void
コード例 #1
0
ファイル: Form1.cs プロジェクト: matBatista/uninfe
 void updateSettings()
 {
     NFe.Components.XMLIniFile xml = new NFe.Components.XMLIniFile(NFe.Components.Propriedade.NomeArqXMLParams);
     xml.WriteValue(this.Name, "Theme", this.metroStyleManager1.Theme);
     xml.WriteValue(this.Name, "Style", this.metroStyleManager1.Style);
     xml.Save();
 }