会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Little_L
博客园
首页
新随笔
联系
订阅
管理
2019年11月8日
在.NET 命令提示中输入sn -k c:\test.snk 创建一个新的随机密钥
摘要: 具体操作: 开始 —— 所有程序 —— Microsoft Visual Studio 2010 —— Visual Studio Tools —— Visual Studio Command Prompt(2010)
阅读全文
posted @ 2019-11-08 09:13 Little_L
阅读(353)
评论(0)
推荐(0)
2019年10月17日
textbox刷新不停闪烁的解决方法
摘要: texbox换成RichTextBox 来源:https://stackoverflow.com/questions/11987755/c-sharp-textbox-stop-flickering
阅读全文
posted @ 2019-10-17 14:31 Little_L
阅读(711)
评论(0)
推荐(0)
2019年10月16日
ToolStripProgressBar 右对齐
摘要: 1、将StatusStrip,LayoutStyle属性设置为HorizontalStackWithOverflow。 2、将控件的“对齐方式”设置为“右”。 来源:https://stackoverflow.com/questions/1562700/anchor-toolstripprogr
阅读全文
posted @ 2019-10-16 16:11 Little_L
阅读(393)
评论(0)
推荐(0)
2019年10月12日
用第三方控件EPPlus读写Excel
摘要: epplus.dll: https://zhuanlan.zhihu.com/p/45350211 操作方法 创建、样式、图标等:https://www.cnblogs.com/rumeng/p/3785748.html 重复写入同一excel报错问题:https://stackoverflow.c
阅读全文
posted @ 2019-10-12 16:49 Little_L
阅读(743)
评论(0)
推荐(0)
2019年10月11日
textbox只显示指定行数
摘要: 利用队列private Queue<string> logQueue = new Queue<string>(); private const int logMax = 100; public void Log(string logText) { // this should only ever r
阅读全文
posted @ 2019-10-11 14:59 Little_L
阅读(505)
评论(0)
推荐(0)
C#使 textbox 滚动到最新一行
摘要: 来源:https://www.iteye.com/blog/shansun123-518059
阅读全文
posted @ 2019-10-11 14:02 Little_L
阅读(994)
评论(0)
推荐(0)
c#操作Excel-----添加dll
摘要: 1、windows 全盘搜索 Microsoft.Office.Interop.Excel 2、将这个DLL文件加载至你的项目中 ,把dll文件放到应用程序…\bin\Debug\下 3、然后在解决方案的项目添加引用:右键鼠标–>添加引用–>浏览–>选择dll放置路径后点击“确定”。 最后在项目源代
阅读全文
posted @ 2019-10-11 11:11 Little_L
阅读(1249)
评论(0)
推荐(0)
公告