将InnerText设置为锁定且不可编辑

时间:2017-09-06 13:08:06

标签: c# xml parsing innertext

我想让内部文本只读取接口程序。如果用户更改了值,但是对于用户而言,他们可能会更改值但却无法导入值,则不会发生任何事情。最好的方法是锁定用户可以看到值但不能更改它的字段(只读)。

if (theXmlDocument.SelectSingleNode("Data/Tool/Characteristic/Diameter") != null)
           Services.DoCommand("tool", "EDIT TOOL '" + itsToolName + "' DIAMETER '" + (Convert.ToDouble(theXmlDocument.SelectSingleNode("Data/Tool/Characteristic/Diameter").InnerText, System.Globalization.NumberFormatInfo.InvariantInfo) * itsMetricToInchFactor).ToString().Replace(".", ",") + "'");
// How to make field to be locked and not editable?

如何锁定文本或使字段不可编辑?

0 个答案:

没有答案