摘要:
使用伪代码进行测试,期望test2中的值不被清空,结果输出值为0,对象被释放了 测试后发现,Remove和Clear的效果一样,都会将对象释放,输出了期望之外的结果 换一种写法,这次在清空了test1的基础上,test2中的对象并没有被释放,输出值为1 结论:使用Clear或者Remove时,释放了 阅读全文
摘要:
错误写法: MySqlConnection conn = new MySqlConnection(connString); string sql="select * from user where FullName like '%@fullname%' "; using (MySqlCommand 阅读全文
摘要:
TextBlock默认文本是居上的,像是这样子 但是TextBlock空间没有VerticalContentAlignment属性,无法设置文本垂直居中, 所以改用Label控件,效果实现 <Label VerticalContentAlignment="Center" Padding="0" He 阅读全文
摘要:
目前我试了2种方式进行备份数据库 先查询mysql安装路径:select @@basedir as basePath from dual 第一种方式:然后进入安装目录找到data文件夹,直接将里面的文件备份 如果安装目录下没有data文件夹,使用show variables like 'datadi 阅读全文
摘要:
select @@basedir as basePath from dual 阅读全文
摘要:
using (Test db = new Test()) { List<table3> list = (from a in db.table1 join b in db.table2 on a.Pid equals b.Pid into c from d in c.DefaultIfEmpty()/ 阅读全文
摘要:
打开IIS,找到MIME类型 打开功能,然后添加 文件扩展名 MIME类型 .svg image/svg+xml.woff application/x-font-woff.woff2 application/x-font-woff 阅读全文
摘要:
实现思路:截取Image控件中要放大的部分,并将其显示出来 核心代码:CroppedBitmap chained = new CroppedBitmap((BitmapSource)img1.Source, new Int32Rect(50,50,50,50));//截取图片 img2.Source 阅读全文
摘要:
PathFigure myPathFigure = new PathFigure();//画第一条直线 myPathFigure.StartPoint = new Point(0, 0); LineSegment myLineSegment = new LineSegment(); myLineSe 阅读全文
摘要:
var server = new LocalPrintServer(); var queues = server.GetPrintQueues(); //通过以上这种方式并不能获取到网络共享打印机,在进行尝试后使用以下方式成功获取 var allQueueList = GetPrintersWinS 阅读全文