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