I was trying to make a contact management Program in python. While adding buttons to it, I got 2 of them right but cant figure out how to get the third one in middle. You can check my button code below :
btn_add = Button(MidLeft, text="ADD NEW", bg="#66ff66", command=AddNewWindow)
btn_add.pack()
btn_help = Button((CantFigure this out), text="HELP", bg="red", command=help)
btn_help.pack()
btn_delete = Button(MidRight, text="DELETE", bg="red", command=DeleteData)
btn_delete.pack()
My desired result is Add button on left, then Delete in middle and Help on right.
Current result is attached
I want "Help" button in place of Delete and "Delete" button in middle of both. Please help.
Attachments:
Answers
Answered by
1
can you give more specific details..or code sample
Answered by
0
Answer:
more details pls
sorry i couldn't do it though
Explanation:
Similar questions