Skip to content
Permalink
Browse files
Create Machine Status
  • Loading branch information
ndugwaj committed Dec 1, 2022
1 parent 739b904 commit 0ca875528ac5b2185f2c9a1c4702daf99df2a13c
Showing 1 changed file with 13 additions and 0 deletions.
@@ -0,0 +1,13 @@
import tkinter as tk
from tkinter import ttk


root = tk.Tk()
root.title("Tab Widget")
tabControl = ttk.Notebook(root)

tab1 = ttk.Frame(tabControl)


tabControl.add(tab1, text ='Machine Status')
tabControl.pack(expand = 1, fill ="both")

0 comments on commit 0ca8755

Please sign in to comment.