上一页 1 ··· 56 57 58 59 60 61 62 63 64 ··· 77 下一页
摘要: 现在我有一个需求,使用ArcGIS Runtime,根据图层的某些特殊属性,比如统计某区域男女比例,用扇形图展现出来,应该怎么来实现呢? 大概效果如下 从文档可以知道,ArcGIS Runtime的Geometry没有提供复杂图形的绘制,所以我们得另寻他法。 最后,从Graphics这个类中找到了可 阅读全文
posted @ 2022-06-08 13:01 槑孒 阅读(240) 评论(0) 推荐(1) 编辑
摘要: lmage image = System.Drawing.Image.FromFile(@"D:\test.png"); Bitmap pbitmap = new Bitmap(image); pbitmap.MakeTransparent(); pictureBox1.Image = pbitma 阅读全文
posted @ 2022-06-08 12:37 槑孒 阅读(317) 评论(0) 推荐(0) 编辑
摘要: PyQτ5 PyQt5 是Digia的一套Qt5应用框架与python的结合,同时支持2.x和3.x。 PyQt5是由一系列Python模块组成。超过620个类,6000函数和方法。能在诸如Unix、Windows和Mac OS等主流操作系统上运行。PyQt5有两种证书,GPL和商业证书。 PyQt 阅读全文
posted @ 2022-05-29 22:58 槑孒 阅读(253) 评论(0) 推荐(0) 编辑
摘要: Python版本为3.* 安装 pip install pyinstaller 打包 1.cmd命令行,打开编写好的py代码文件所在目录 2.输入 pyinstaller -F -w -i icon.ico main.py pyinstaller -h可以查看其参数说明,由于较多这里不做完整展示,摘 阅读全文
posted @ 2022-05-29 22:34 槑孒 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 1、安装 geckodriver https://github.com/mozilla/geckodriver/releases geckodriver-v0.31.0-win64.zip 解压将其放到环境变量里配置过的路径里的任一个路径,这样运行时就可以自动查找到。 注意:geckodriver只 阅读全文
posted @ 2022-05-28 18:47 槑孒 阅读(92) 评论(0) 推荐(0) 编辑
摘要: selenium安装 1、Selenium简介 Selenium是一个用于Web应用程序测试的工具。Selenium测试直接运行在浏览器中,就像真正的用户在操作一样。支持的浏览器包括IE(7, 8, 9, 10, 11),Mozilla Firefox,Safari,Google Chrome,Op 阅读全文
posted @ 2022-05-28 18:11 槑孒 阅读(4391) 评论(0) 推荐(0) 编辑
摘要: <Grid Margin="6"> <ListBox> <!--ItemsPanel--> <ListBox.ItemsPanel> <ItemsPanelTemplate> <StackPanel Orientation="Horizontal"></StackPanel> </ItemsPane 阅读全文
posted @ 2022-05-27 15:39 槑孒 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 控件的宽度、高度都跟随着Window的长度和宽度 <Window x:Name="window" x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation 阅读全文
posted @ 2022-05-25 15:56 槑孒 阅读(1456) 评论(0) 推荐(0) 编辑
摘要: System.ArgumentException:'Invalid argument: geometry1 and geometry2 must have equivalent spatial references.' 参数无效:几何图形必须具有等价的空间引用。 阅读全文
posted @ 2022-05-25 13:26 槑孒 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 调用线程无法访问此对象,因为另一个线程拥有该对象问题,这种情况往往很常见,比如:说Timers和DoubleAnimation也就是计时器和动画一起使用就会出来这个错误。 // 其实加上一句话就行了,也就是设置线程的有优先级,异步 this.Dispatcher.Invoke(new Action( 阅读全文
posted @ 2022-05-25 08:58 槑孒 阅读(173) 评论(0) 推荐(0) 编辑
上一页 1 ··· 56 57 58 59 60 61 62 63 64 ··· 77 下一页