Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

create using python Can you place three canvas on the top level window? If yes. Create such an application. 2)from tkinter import * root =

create using python Can you place three canvas on the top level window? If yes. Create such an application.

2)from tkinter import *

root = Tk()def clicked(event): C1.delete(ALL) C1.create_oval(event.x, event.y, event.x+20, event.y+20, outline="yellow", fill="blue")C1 = Canvas(root, height=250, width=300)C1.bind("", clicked)# bind mouse event to this canvas C1C1.pack()root.mainloop()# mainloop shall be called once and only once# it allows the application to handle eventsobule-1 meanto double click on Button-1. I.e. double click on left mouse button.Create a function and name this function stop. The stop function would be similar to functioncallback but this time, it will quit the program by calling sys.exit(). In order to use this function, youhave to import sys .obule-1 meanto double click on Button-1. I.e. double click on left mouse button.Create a function and name this function stop. The stop function would be similar to functioncallback but this time, it will quit the program by calling sys.exit(). In order to use this function, youhave to import sys . 4. Button-1 is left button, how about Button-2 and Button-3? Modify the above program so that yourprogram can handle both Button-1 and Button-3 as well. When Button-3 clicked, it will draw a filled

red circle. Note Button-1 still draw a filled blue circle.

oouble-1 meanto double click on Button-1. I.e. double click on left mouse button.Create a function and name this function stop. The stop function would be similar to functioncallback but this time, it will quit the program by calling sys.exit(). In order to use this function, youhave to import sys .

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Current Trends In Database Technology Edbt 2004 Workshops Edbt 2004 Workshops Phd Datax Pim P2panddb And Clustweb Heraklion Crete Greece March 2004 Revised Selected Papers Lncs 3268

Authors: Wolfgang Lindner ,Marco Mesiti ,Can Turker ,Yannis Tzitzikas ,Athena Vakali

2005th Edition

3540233059, 978-3540233053

More Books

Students also viewed these Databases questions