搜索结果
查询Tags标签: mypath,共有 4条记录-
docker创建自己的镜像
创建自己centos镜像 #编写自己的dockerfile文件 [root@sunrui ~]# vim mydockerfile-centos FROM centos MAINTAINER sunruiENV MYPATH /usr/local WORKDIR $MYPATHRUN yum -y install vim RUN yum -y install net-toolsEXPOST 80CMD echo $MYPATH CMD echo "-----e…
2022/4/6 23:22:40 人评论 次浏览 -
WPF使用Path在C#后台使用代码画线,动态添加至canvas
PathFigure myPathFigure = new PathFigure();//画第一条直线 myPathFigure.StartPoint = new Point(0, 0); LineSegment myLineSegment = new LineSegment(); myLineSegment.Point = new Point(50, 50); PathSegmentCollect…
2021/7/22 12:38:10 人评论 次浏览 -
WPF使用Path在C#后台使用代码画线,动态添加至canvas
PathFigure myPathFigure = new PathFigure();//画第一条直线 myPathFigure.StartPoint = new Point(0, 0); LineSegment myLineSegment = new LineSegment(); myLineSegment.Point = new Point(50, 50); PathSegmentCollect…
2021/7/22 12:38:10 人评论 次浏览 -
python TypeError: unsupported operand type(s) for +: 'geoprocessing value object' and
python TypeError: unsupported operand type(s) for +: geoprocessing value object and str TypeError: unsupported operand type(s) for +: geoprocessing value object and str if self.params[0].value:mypath=self.params[0].value #cpath=mypath+os.sep+datasetar…
2021/7/9 14:07:08 人评论 次浏览