Python da MessageBox

 

Merhaba arkadaşlar bu makalemizde MessageBox a örnek vereceğim. Bu örnekte formdaki buttona tıklandığında ekranda mesaj verilir.

 












Şekil 1











Şekil 2

 

 

import tkinter as tk

from tkinter import messagebox

 

root= tk.Tk()

root.title("python example...bs")

canvas1 = tk.Canvas(root, width = 300, height = 300)

canvas1.pack()

 

def ExitApplication():

    MsgBox = tk.messagebox.askquestion ('Exit Application','Are you sure you want to exit the application'+'\n'+"Uygulamadan cikmak icin emin misiniz?",icon = 'warning')

    if MsgBox == 'yes':

       root.destroy()

    else:

        tk.messagebox.showinfo('Return','You will now return to the application screen'+'\n'+"Uygulama ekranina geri doneceksiniz",icon = 'info')

       

button1 = tk.Button (root, text='Exit Application'+'\n'+"(Uygulamadan Cikis)",command=ExitApplication,width=20,height=2,font='arial 14 bold',bg='deepskyblue',fg='white')

canvas1.create_window(150, 150, window=button1)

 

root.mainloop()

 

Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...