วิธีเปลี่ยน Title ให้ Windows ใน Tkinter
Python for PocketPC
tk root window ที่เราสร้างขึ้นในตัวอย่างที่ผ่านมา มีTitle เป็นตัวอักษร tk
เราสามารถกำหนดตัวอักษรTitle ได้โดยใช้คำสั่ง title(u'string')
เช่น
จากตัวอย่าง ในบรรทัด
root.title(u'hello')
จะกำหนดให้ Title เป็น StringแบบUnicode เขียนว่า hello
ส่วนบรรทัด
my_label=Tkinter.Label(text=u'hello test')
ก็เป็นการสร้าง Label ใน root windows ขึ้นมา1อัน มีตัวอักษรเขียนว่า hello test
code ตัวอย่าง
tk02.zip
หน้าถัดไป >>>
หน้าก่อน
กลับไปหน้าหลัก
tk root window ที่เราสร้างขึ้นในตัวอย่างที่ผ่านมา มีTitle เป็นตัวอักษร tk
เราสามารถกำหนดตัวอักษรTitle ได้โดยใช้คำสั่ง title(u'string')
เช่น
import sys
sys.path.append('\\Storage Card\\python\\lib\\python23.zip\\lib-tk') import Tkinter root=Tkinter.Tk() root.title(u'hello') my_label=Tkinter.Label(text=u'hello test') my_label.pack() root.mainloop() |
จากตัวอย่าง ในบรรทัด
root.title(u'hello')
จะกำหนดให้ Title เป็น StringแบบUnicode เขียนว่า hello
ส่วนบรรทัด
my_label=Tkinter.Label(text=u'hello test')
ก็เป็นการสร้าง Label ใน root windows ขึ้นมา1อัน มีตัวอักษรเขียนว่า hello test
code ตัวอย่าง
tk02.zip
หน้าถัดไป >>>
หน้าก่อน
กลับไปหน้าหลัก