Windows窗体应用
游园子
这个作者很懒,什么都没留下…
展开
-
笔记-CppCLR_WinForms操作遍历目录中,目录下的文件及目录
1.遍历目录下的所有文件private: System::Void UnderTheCatalogListFiles(const char * dir){ intptr_t handle; _finddata_t findData; strcat((char *)dir, "*.*"); // 在要遍历的目录后加上通配符 handle ...原创 2018-09-04 16:02:27 · 250 阅读 · 0 评论 -
笔记-CppCLR_WinForms操作BarcodeLib.Barcode.WinForms.dll条形码生成
1.在VS中下载BarcodeLib.Barcode.WinForms.dll 2.条形码生成函数,返回为Bitmapprivate: Image^ DrawBarCode(String^ serialNum, int width, int height){ BarcodeLib::Barcode::Linear ^barcode =gcnew BarcodeLib::Ba...原创 2018-09-04 15:33:57 · 606 阅读 · 0 评论 -
笔记-CppCLR_WinForms操作ThoughtWorks.QRCode二维码生成,保存,打印
1.在VS中下载ThoughtWorks.QRCode.dll 2.二维码生成函数,返回为Bitmapprivate: Bitmap^DrawQRCodeBmp(String^ content, int mENCODE_MODE, int mQRCodeScale, int mQRCodeVersion, int mERRO...原创 2018-09-04 15:25:19 · 425 阅读 · 1 评论 -
笔记-CppCLR_WinForms操作pictureBox打开,保存,打印图片
1.打开对话框选择图片,显示图片及显示调整private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { if (openFileDialogPictureShow->ShowDialog() == System::Windows::Forms::DialogResult...原创 2018-09-04 15:05:27 · 443 阅读 · 0 评论 -
笔记-CppCLR_WinForms操作dataGridView导出Excel表格
1.添加Microsoft Excel 16 Object Library 2.添加相关定义及命名空间using namespace Microsoft::Office::Interop::Excel;#define mExcel Microsoft::Office::Interop::Excel//创建datasetDataSet ^mDataSet;//创建dat...原创 2018-09-04 14:50:22 · 211 阅读 · 0 评论 -
笔记-CppCLR_WinForms操作dataGridView导入Excel表格
1.添加Microsoft Excel 16 Object Library 2.添加相关定义及命名空间using namespace Microsoft::Office::Interop::Excel;#define mExcel Microsoft::Office::Interop::Excel//创建datasetDataSet ^mDataSet;//创建datata...原创 2018-09-04 14:36:24 · 321 阅读 · 0 评论