I want to make the frame, which covers the entire window and has many widgets in it displayed through place(), scrollable. But I am unable to do so. Please help`
from tkinter import *
from PIL import Image,ImageTk
import ctypes
import time
ctypes.windll.shcore.SetProcessDpiAwareness(1)
mw=Tk()
width = mw.winfo_screenwidth()
height = mw.winfo_screenheight()
mw.geometry("%dx%d" % (width, height))
mw.title("Amaltaas")
mw.tk.call("tk","scaling",1.5)
mf=Frame(mw,bg="#ffffff",width=width,height=height)
mf.pack()
basically, this is the frame that contains all the widgets and i want it to scroll like any website does