We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf4f6c4 + be91f20 commit 4478282Copy full SHA for 4478282
Sesssion_analysis.py
@@ -0,0 +1,18 @@
1
+import tkinter as tk
2
+from tkinter import ttk
3
+from tkinter.ttk import *
4
+
5
+root = tk.Tk()
6
+root.geometry('600x400')
7
+root.title("Tab Widget")
8
9
+notebook = ttk.Notebook(root)
10
+live_track = ttk.Frame(notebook)
11
+session_his = ttk.Frame(notebook)
12
+notebook.add(live_track, text = 'Live Tracking')
13
+notebook.add(session_his, text = 'Session History')
14
15
+notebook.pack()
16
17
18
+root.mainloop()
0 commit comments