无法将indexer的属性分配给,它是只读的。无法保存设置

时间:2018-06-28 08:07:14

标签: c# textbox settings readonly

今天,我继续使用 TextBox1_LastValue 。 与往常一样,MSDN manuals中的一切都很棒。我遵循了这些指示,但失败了,如下所示。这属于FormClosed事件处理程序的范围。 如何做到可写(非只读)?

enter image description here

这是 textBox1_LastValue 本身。

enter image description here

谢谢!

1 个答案:

答案 0 :(得分:1)

您必须将此设置设置为user-而不是application-scope。然后它不是只读的,您可以保存它。

How do I get around application scope settings being read-only?