摘要:
/// <summary> /// http://www.cnblogs.com/KissKnife/archive/2007/10/13/923352.html /// 获取图片指定部分 /// </summary> /// <param name="pPath">图片路径</param> /// 阅读全文
摘要:
Navicat就可以。一键导入 阅读全文
摘要:
在我用c#写一些小程序是总是希望,程序窗体不在任务栏上显示程序的窗体,c# Form提供了一个 属性值可以很好的解决这个问题 这个属性就是 ShowInTaskbar 在微软的官方声明格式为: public bool ShowInTaskbar { get; set; } 及可以通过这个属性来获取或 阅读全文
摘要:
private void btnFile_Click(object sender, EventArgs e) { OpenFileDialog fileDialog = new OpenFileDialog(); fileDialog.Multiselect = true; fileDialog.T 阅读全文
摘要:
1、使用FileStream读写文件 文件头: 复制代码代码如下: using System;using System.Collections.Generic;using System.Text;using System.IO; 读文件核心代码: 复制代码代码如下: byte[] byData = 阅读全文