zoukankan
html css js c++ java
winform(C#)拖拽实现获得文件路径
private void Form1_DragDrop(object sender, DragEventArgs e)
{
string path = ((System.Array)e.Data.GetData(DataFormats.FileDrop)).GetValue(0).ToString();
MessageBox.Show(path);
}
private void Form1_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
e.Effect = DragDropEffects.Link;
else e.Effect = DragDropEffects.None;
}
-----
查看全文
相关阅读:
win7 下如何安装 Microsoft Web Application Stress Tool
[译文]casperjs的API-mouse模块
【性能测试】jmeter的坑(1)——如何在多网卡情况下正确连接
[性能分析]端口限制
[性能分析]linux文件描述符
python 对mongodb进行压力测试
常用jar包信息
Basic Grammer
Maven 知识汇总
【Linux】Linux常用命令
原文地址:https://www.cnblogs.com/boneking/p/1326207.html
最新文章
CSRF利用
CORS扫描工具
Fastjson反序列化漏洞
Linux 之 netstat使用
Linux 之 awk文本分析工具
python 全栈学习目录
ubuntu18.04安装chrome和优化界面
py typing — Support for type hints
跨域请求
Django学习笔记1.1
热门文章
自定义admin组件,Xamin
pythonp爬虫selenium库解析
python BeautifulSoup库详解
python爬虫request模块详解
Django学习笔记12
Django学习笔记11
jscover使用说明-总体说明
FFmpeg工具使用总结
视频格式与编码问题分析
Tsung安装指南
Copyright © 2011-2022 走看看