2014年4月25日

C# textbox 滚动条 随文本输入 滚动

摘要: tb_Log.SelectionStart = tb_Log.Text.Length;//设置光标位置 tb_Log.ScrollToCaret();//随文本输入 滚动 阅读全文

posted @ 2014-04-25 16:30 iackjee 阅读(535) 评论(0) 推荐(0) 编辑

C#文件对话框,一次多选文件设置

摘要: OpenFileDialogofd = new OpenFileDialog();ofd.Multiselect = true;if (ofd.ShowDialog() == DialogResult.OK){ foreach (string file in ofd.FileNames) { ... 阅读全文

posted @ 2014-04-25 08:11 iackjee 阅读(2403) 评论(0) 推荐(0) 编辑

导航