damoshayu.cn,苍井空浴缸大战猛男120分钟,网址你懂的,中国女人内射6XXXXXWWW

sgtool.exe

前沿拓展:

sgtool.exe

掌養(yǎng)夠延場邊己就電腦無法使用搜狗輸入法提示SGTool.exe損壞的映像的解決方法如下:

1、打開這臺電腦(計算機),并點擊“卸載或更改程序”。

2、在程序列表中找到礎成項含東京“搜狗拼音輸入法”并右擊選擇“卸載/更改”,將其卸載。

3春跑很時控使省利室調、接著會彈出卸載向導,按

①重置會清掉歷史抽獎記錄(含本地文件,如有必要建議對中獎名單留檔)

②抽獎中點擊重置會提示正在抽獎中

③非抽獎狀態(tài)點擊重置會提示該**作會刪除歷史記錄,是否確認

基本功能點確認后,我們就開始進行GUI設計。

2. GUI設計與實現(xiàn)

基于功能點,我們用axure簡單進行UI布局設計,第二再通過GUI開發(fā)庫進行設計,這里依舊采用的是pysimplegui,主要是簡單方便。

sgtool.exe

UI布局設計-axure

基于GUI設計,我們編碼如下:

nameList_column = [
[sg.Text('人員名單:')],
[sg.Listbox(values=[], size=(20, 10), key='nameList')],
]
result_column = [
[sg.Text('中獎記錄:')],
[sg.Multiline('', size=(48, 10), key='result', text_color='DeepPink')],
]

# 主題設置
sg.theme('SystemDefaultForReal')

# 布局設置
layout = [[sg.Text('選擇參與抽獎人員名單文件:', font=('微軟雅黑', 12)), sg.InputText('', key='_file', size=(50, 1), font=('微軟雅黑', 10), enable_events=True), sg.FileBrowse('打開', file_types=(('Text Files', '*.xlsx'),), size=(10, 1), font=('微軟雅黑', 11))],
[sg.Frame(layout=[
[sg.Text('本輪獎項:', font=('微軟雅黑', 12)), sg.Combo(['特等獎', '一等獎', '二等獎', '三等獎', '四等獎', '五等獎', '六等獎'], font=('微軟雅黑', 10), default_value='特等獎', size=(15, 5), key='_type'),
sg.Text('本輪人數(shù):', font=('微軟雅黑', 12)), sg.InputText('5', key='_num', size=(38, 1), font=('微軟雅黑', 10))],
],
title='抽獎設置', title_color='red', relief=sg.RELIEF_SUNKEN, tooltip='請進行抽獎設置后再開始抽獎')],
[sg.Multiline(size=(48, 5), font=(
'微軟雅黑', 18), text_color='Blue', key='luckyName', justification='center')],
[sg.Column(nameList_column), sg.Column(result_column)],
[sg.Text('**作說明:', font=('微軟雅黑', 12))],
[sg.Text('①先選擇參與抽獎的人員名單xlsx文件,人員名單文件包含ID和name兩個字段n②獲獎名單將存在小工具所在文件夾,重置會刪除歷史記錄文件', font=('微軟雅黑', 10)),
sg.Text('', font=('微軟雅黑', 12), size=(5, 1)),
sg.Button('開始抽獎', font=('微軟雅黑', 12), button_color='Orange'),
sg.Button('結束', font=('微軟雅黑', 12), button_color='red'),
sg.Button('重置', font=('微軟雅黑', 12), button_color='red'), ],
]

# 創(chuàng)建窗口
window = sg.Window('抽獎小工具,作者@微信**:可以叫我才哥', layout,
font=('微軟雅黑', 12), default_element_size=(50, 1))

其包含的控件如下:

Text 文本InputText 輸入文本框FileBrowse 文件瀏覽Multiline 多行文本框Combo 下拉框Listbox 列表Button 按鈕

需要注意的是這里有個Frame組件,用于layout嵌套,可以很好地模塊化UI布局。

3. 功能實現(xiàn)

在本案例中,需要實現(xiàn)三個功能,分別是:讀取人員名單、隨機抽獎以及保存中獎名單。

3.1 讀取人員名單

這里采用的是openpyxl讀取表格數(shù)據并獲得某幾列的值,由于存在表頭,所以最后不需要表頭

def nameList(window):
fileName = values['_file']
try:
wb = openpyxl.load_workbook(fileName)
active_sheet = wb.active
names = [cell_object.value for cell_object in list(active_sheet.columns)[1]][1:]
ids = [cell_object.value for cell_object in list(active_sheet.columns)[0]][1:]
names = [name+'_'+str(id_) for name, id_ in zip(names, ids)]
window['nameList'].update(names)
return names
except:
sg.popup('請選擇正確格式的的人員名單文件', title='提示',)
3.2. 隨機抽獎

由于我們需要一次隨機抽取的人數(shù)存在多個,所以這里用的是random.sample(),需要注意的是傳入的參數(shù)中names是需要去掉已中獎名單

def Result(window, names):
global is_run, luckyNames
_type = values['_type'] # 本輪獎項類型
_num = int(values['_num']) # 本輪人數(shù)

while True:
randomName = random.sample(names, k=_num)
luckyName = ' '.join(randomName)
window['luckyName'].update(luckyName)

if not is_run:
headers = ['獎項', '名單']
toCsv(headers, [_type]*len(randomName), randomName, lucky)
luckyNames = luckyNames + _type+' : '+luckyName+'nn'
window['result'].update(luckyNames)
return
time.sleep(0.088)
3.3. 保存中獎名單

這里我們用的是csv庫的方法,追加存儲

def toCsv(headers, col1, col2, file):
# 存在則追加,不存在則新建
if os.path.exists(lucky):
with open(lucky, 'a', encoding='utf_8_sig', newline='') as csvfile:
writer = csv.writer(csvfile)
writer.writerows(zip(col1, col2))
else:
with open(lucky, 'w', encoding='utf_8_sig', newline='') as csvfile:
writer = csv.writer(csvfile)
writer.writerow(headers)
writer.writerows(zip(col1, col2))

完成核心功能函數(shù)后,我們再進行GUI交互邏輯的實現(xiàn)。

3.4. GUI交互邏輯

這里有兩個全局變量,其中一個用于記錄當前抽獎狀態(tài),另外一個用于存儲當前已經獲獎的人員信息。關于交互邏輯的詳情,大家可以結合核心功能需求及以下代碼了解。

# 初始狀態(tài)
is_run = False
luckyNames = ''

# **循環(huán)
while True:
event, values = window.read()
if event in (None, '關閉程序'):
break
if event == '_file':
nameList(window)

if event == '開始抽獎':
if is_run:
sg.popup('抽獎進行中,無需重復**作……', title='提示')
continue
try:
names = nameList(window) # 人員名單
_num = int(values['_num']) # 本輪人數(shù)
lucky = '中獎名單.csv' # 中獎名單
if os.path.exists(lucky):
with open('中獎名單.csv', 'r', encoding='utf_8_sig') as f:
reader = csv.reader(f)
selectedNames = set([i[1] for i in reader][1:])
names_set = set(names)-selectedNames
else:
names_set = set(names)
if len(names_set) >= _num:
is_run = True
_thread.start_new_thread(Result, (window, names_set))
else:
sg.popup(
f'請選擇正確本輪抽獎人數(shù)(當前 {len(names_set)} 個未中獎人數(shù))', title='提示')
except:
sg.popup('請選擇正確本輪抽獎人數(shù)(別超過總人數(shù)哦)', title='提示')
elif event == '結束':
is_run = False
elif event == '重置':
if is_run:
sg.popup('抽獎進行中,請等待抽獎結束后重置…', title='提示')
continue
yes_no = sg.popup_yes_no(
'重置會清楚歷史數(shù)據,是否執(zhí)行此**作??', text_color='red', title='提示')
if yes_no == 'Yes':
try:
os.remove(lucky)
luckyNames = ''
window['result'].update(luckyNames)
window['luckyName'].update(luckyNames)
sg.popup('抽獎歷史記錄已被重置……', title='提示')
except:
sg.popup('無抽獎歷史記錄……', title='提示')
window.close()

基于此,我們就完成了隨機抽獎小工具的制作。

啟動頁如下:

sgtool.exe

最后,大家感興趣就可以將代碼打包成exe可執(zhí)行文件了,我這邊打包下來大概10MB左右大小。

以上就是本文全部內容,如果你感興趣,點個贊和在看支持一下唄。

拓展知識:

原創(chuàng)文章,作者:九賢生活小編,如若轉載,請注明出處:http:///49672.html