-
March 14th, 2022, 05:18 PM
#1
move python combobox down arrow to left
i have base code that works below. cannot figure out how to move down arrow from one right side to left. anyideas?
thanks in advance
import tkinter as tk
from tkinter import ttk
window = tk.Tk()
window.geometry('400x200')
comboExample = ttk.Combobox(
window,
values=[
"Jan",
"Feb",
"Mar",
"Apr"
]
)
comboExample.grid(column=0, row=0)
comboExample.current(0)
window.mainloop()
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|