Skip to content

Commit 4478282

Browse files
Merge pull request Gagandeep-2003#69 from Deepak-Kumbhar2006/patch-7
Gagandeep-2003#50 - Create Sesssion_analysis.py for analysis GUI
2 parents cf4f6c4 + be91f20 commit 4478282

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Sesssion_analysis.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)