Pythonによる自己メディアアシスタント---ログインページの実現コード


コア技術:Pythoon 3.7
GUI技術:Tkinter(Pythonはすでに内蔵されています)
多くの文章はPython GUIのtkinterウィンドウ教程大集合を書いています。私はN回見ましたが、多くのものが足りませんでした。基本的な紹介はありません。まだ足りません。これをやるのもプロジェクトのためです。まずスクリーンショットをお願いします。知識は多いです。

windowの上で少し傷があって、mac上海でいいですよね。使った技術を並べてみます。コードを共有しています。
1、フォームにタイトルとアイコンを設定します。アイコンのフォーマットはICOです。一般的にPngを回転します。https://www.easyicon.net/covert/ これは変換されたウェブサイトです。
2、Tkinterはコントロール、ラベルコントロール、ボタンコントロール、チェックボックスコントロールを入力します。私は多くないと言っています。注意したいのは、パスワード表示はショー=「*」です。
3、Tkinterのplace部局は絶対的な位置付けです。大きさを変えることが許されないので、絶対的な位置付けができます。
4、ボタンイベントのパラメータは、lamda表現を使用する必要があります。
5、背景色は白を採用していますので、ケーブルの背景色は白を採用しています。
6、最後の一つはスクリーンの中にあります。これはネットでもみんな自分のものです。
コードは以下の通りです

import tkinter as tk
import tkinter.font as tkFont
from tkinter import messagebox
 
class LoginView():
  window = tk.Tk()
  def __init__(self):
    self.initializeUI()
  def initializeUI(self):
    self.window.iconbitmap("./resource/icon/hunter.ico")
    self.window.title('             ')
    background_color="white"
    self.window.configure(background=background_color)
    #self.window.overrideredirect(True)
    photo = tk.PhotoImage(file="./resource/images/hunter.png")
    label = tk.Label(image=photo,width=32, bg=background_color)
    label.image = photo
    label.place(x=60,y=40)
    ft = tkFont.Font(family='Fixdsys', size=16, weight=tkFont.BOLD)
    tk.Label(self.window, text="         ",font=ft, bg=background_color).place(x=100,y=44)
    photo = tk.PhotoImage(file="./resource/images/splitline.png")
    label = tk.Label(image=photo)
    label.image =photo
    label.place(x=0,y=90)
    #          #F3F3F4
    entryBackGroundColor="#F3F3F4"
    userNameFont = tkFont.Font(family='Fixdsys', size=10)
    tk.Label(self.window, text='      :',font=userNameFont, bg=background_color).place(x=20, y=150)
    userName = tk.StringVar()
    tk.Entry(self.window, highlightthickness=1,bg=entryBackGroundColor,textvariable =userName).place(x=20, y=180,width=320, height=30)
    passWordFont = tkFont.Font(family='Fixdsys', size=10)
    passWord = tk.StringVar() #
    tk.Label(self.window, text='     :',font=passWordFont, bg=background_color).place(x=20, y=220)
    tk.Entry(self.window, highlightthickness=1, bg=entryBackGroundColor,textvariable =passWord, show='*').place(x=20, y=250,width=320, height=30)
    remeberMeFont=tkFont.Font(family='Fixdsys', size=12)
    tk.Checkbutton(self.window, text="   ",fg="#0081FF",variable="0",font=remeberMeFont, bg=background_color).place(x=20, y=300)
    tk.Button(self.window, text='    ', font=('Fixdsys', 14, 'bold'), width=29,fg='white',bg="#0081FF",command=lambda :self.login(userName,passWord)).place(x=20, y=330)
    regester_info=tkFont.Font(family='Fixdsys', size=10)
    tk.Label(self.window, text='     ?:', font=regester_info, bg=background_color).place(x=102,y=375)
    tk.Label(self.window, text='    ', font=regester_info, bg=background_color,fg="#FFA500").place(x=185,y=375)
    w = 370
    h = 480
    sw = self.window.winfo_screenwidth()
    #       
    sh = self.window.winfo_screenheight()
    #       
    #      100
    x = (sw - w) / 2
    y = (sh - h) / 2
    self.window.geometry("%dx%d+%d+%d" % (w, h, x, y))
    self.window.mainloop()
    pass
  def login(self,userName,passWord):
    errMessage=""
    if len(userName.get())==0:
      errMessage=errMessage+"       !\r"
    if len(passWord.get())==0:
      errMessage=errMessage+"      !"
    if errMessage!="":
      messagebox.showinfo('  ', errMessage)
    print(passWord.get())
    pass

提示した情報は一回で提示し終わって、ユーザーを入力してからパスワードを提示しなくてもいいです。これは比較的簡単に書いても大丈夫です。入力項目が多いこの友好型に対しては必ずやり遂げます。
締め括りをつける
ここでは、Pythonに基づく自己メディアアシスタントについて紹介します。ログインページの記事はこれまでの記事を検索したり、以下の関連記事を見たりしてください。これからもよろしくお願いします。