摘要: clipboardData 对象 提供了对剪贴板的访问。 三个方法 1.clearData(sDataFormat) 删除剪贴板中指定格式的数据。 2.getData(sDataFormat) 从剪贴板获取指定格式的数据。 3.setData(sDataFormat, sData) 给剪贴板赋予指定 阅读全文
posted @ 2018-06-11 16:57 。活着。 阅读(1489) 评论(0) 推荐(0)
摘要: 1 foreach (Control c in this.Controls) 2 { 3 if (c is TextBox) 4 ((TextBox)c).Text = "1111"; 5 } 6 7 foreach (Control c in this.Controls) 8 { 9 string 阅读全文
posted @ 2018-06-11 16:55 。活着。 阅读(291) 评论(0) 推荐(0)