16.通过代码如何输入多行文本?(How to enter multiline text in textbox through code? )
利用TextBox控件的LINES属性
string strAddress = { \"Mukund Pujari \", \"Global Transformation Technologies \", \"Pune, India \"};
textBox1.MultiLine=true;
textBox1.Lines=strAddress;
或者
textBox1.Text= \"Line 1\\r\\nLine2\\r\\nLine3. \"; [Page]
或者
用 \"System.Environment.NewLine \"来替代换行符号
17. 如何在DataGrid中去掉CheckBox不确定状态?(How to remove the indeterminate status of checkbox in datagrid?)
DataGridTableStyle ts1 = new DataGridTableStyle(); //创建Table样式
ts1.MappingName = \"Items \"; //分配要应用样式的Data Table
DataGridColumnStyle boolCol = new DataGridBoolColumn(); // 创建CheckBox列
boolCol.MappingName = \"ch \"; //分配数据列名称
boolCol.AllowNull=false; // 修改AllowNull属性
18. 如何在用一个数据源DataTable绑定两个控件,确保变化不反映在两个控件中?( How to bind two