Disabling a TextBox in c# .NET using CSLA - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T19:00:00Z http://stackoverflow.com/feeds/question/561864 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/561864/disabling-a-textbox-in-c-net-using-csla 1 Disabling a TextBox in c# .NET using CSLA Sakkle 2009-02-18T16:38:24Z 2009-02-20T10:45:42Z <p>I am trying to disable a number of text boxes intended for displaying data (not edit) in one of my UserControls. However, for some reason I can not get the textBoxes to disable properly.</p> <p>I've set "ApplyAuthorization on readWriteAuthorization" to true and the textBoxes are databound to the correct properties.</p> <p>I've also added the following lines to the CanWriteProperty of my object:</p> <pre><code>if (propertyName == OpeningDateProperty.Name) return false; if (propertyName == ChangeDateProperty.Name) return false; if (propertyName == CloseDateProperty.Name) return false; return base.CanWriteProperty(propertyName); </code></pre> <p>I can't figure out what I'm doing wrong here. I've implemented pretty much the same thing recently in other UserControls without any problems...</p> <p>I am using WinForms in C# .NET (vs2008)</p> <p><b>EDIT : </b> The code snippets and the properties are taken from my customer object. The date represent opening, last change and closure of the customer account. They are never supposed to be edited at all and in fact in the old sollution they are represented by textLabels, however we now want to use a text box and make the property's CanWriteProperty false.</p> <p>I realise that the info might be sort of scarce, but I am looking for what I might have forgotten in this process.</p> <p><b>EDIT :</b> We are using <strong><em>CSLA</em></strong> as well and I guess (I'm new at this whole thing) this has something to do with why we want to do it like this.</p> <p><b>EDIT (Sollution): </b> As you can see in my answer below, the problem was that I had not set up the CurrentItemChanged event like I should have.</p> http://stackoverflow.com/questions/561864/disabling-a-textbox-in-c-net-using-csla/561873#561873 14 Answer by ZaijiaN for Disabling a TextBox in c# .NET using CSLA ZaijiaN 2009-02-18T16:40:34Z 2009-02-19T20:04:45Z <p>If you're trying to get them to be read only, then just set the .ReadOnly property to true.</p> <p>Alternatively, if you're never ever using these textboxes for editing, then maybe just use a Label instead?</p> <p><strong>EDIT:</strong> Ahh it appears this more of a CSLA-framework question than a pure windows forms question. I've never even heard of CSLA before this question, but it looks interesting.</p> http://stackoverflow.com/questions/561864/disabling-a-textbox-in-c-net-using-csla/561898#561898 1 Answer by Avram for Disabling a TextBox in c# .NET using CSLA Avram 2009-02-18T16:45:10Z 2009-02-18T16:45:10Z <p>i think you mean ReadOnly property</p> http://stackoverflow.com/questions/561864/disabling-a-textbox-in-c-net-using-csla/561947#561947 3 Answer by KevB for Disabling a TextBox in c# .NET using CSLA KevB 2009-02-18T17:01:46Z 2009-02-18T17:01:46Z <p>If you are databinding to properties of the control just bind the "ReadOnly" property of the textbox to the "CanWrite" property of your business object.</p> http://stackoverflow.com/questions/561864/disabling-a-textbox-in-c-net-using-csla/565536#565536 1 Answer by Sakkle for Disabling a TextBox in c# .NET using CSLA Sakkle 2009-02-19T14:26:11Z 2009-02-19T14:32:04Z <p>To make this work you need to do the following:</p> <ol> <li><p>Make sure the TextBox is databound to the right property in the correct way</p></li> <li><p>Set up the needed checks for each textBox in the CanWriteProperty override in your root object</p> <pre><code>if (propertyName == OpeningDateProperty.Name) return false; </code></pre></li> <li><p>Make sure the rootBindingsource's CurrentItemChanged event is set up right</p> <pre><code>private void rootBindingSource_CurrentItemChanged(object sender, EventArgs e) { readWriteAuthorization1.ResetControlAuthorization(); } </code></pre></li> <li><p>Make sure the texBox's "ApplyAuthorization on ReadWriteAuthorization" is set to true</p></li> </ol> <p>This solved the problem for me.</p>