wx屏幕画线

# -*- coding: utf-8 -*-
"""wx屏幕画线
Created on Thu Nov 15 22:37:02 2018
#QQ群:476842922(欢迎加群讨论学习)
@author: Administrator
"""
import wx
import time
app = wx.App(False)
s = wx.ScreenDC()
s.Pen = wx.Pen("#FF0000")
s.DrawLine(60,60,1200,1200)

猜你喜欢

转载自blog.csdn.net/weixin_33595571/article/details/84207448
今日推荐