How to make a textbox disable but selectable in C# winform VS 2010?
问问题
1851 次
1 回答
7
You can use the ReadOnly property:
textbox.ReadOnly = true;
http://msdn.microsoft.com/en-us/library/system.windows.forms.textboxbase.readonly.aspx
于 2012-10-28T09:42:54.653 回答