Алексей Милованов
S:23:46:34 09.04
R:23:46:47 09.04
# Канвас вывода схемы ГРС
fra8 = Frame(window, width=1200, height=660, bg=*white*, highlightbackground=*black*, highlightthickness=2)
fra8.place(x=316, y=30)
lb5 = Label(fra8, width=22, height=2, text=*Схема ГРС*, font=*Rockwellnova 12*, bg=*white*)
lb5.grid(row=0, column=0)
txt3 = Canvas(fra8, width=1200, height=617, bg=*white*)
txt3.grid(row=1, column=0)
# txt3.create_text(20,10, anchor=NW, font=*Rockwellnova 14*, text=*Технологическая схема ГРС*, fill=*black*)
# Элементы ГРС
fra5 = Frame(window, width=316, height=60, bg=*white*, highlightbackground=*black*, highlightthickness=2)
fra5.place(x=1525, y=30)
lb2 = Label(fra5, width=30, height=2, text=*Технологические блоки ГРС*, font=*Rockwellnova 12*, bg=*white*)
lb2.pack()
fra3 = Frame(window, width=316, height=700, bg=*white*, highlightbackground=*black*, highlightthickness=2)
fra3.place(x=1525, y=80)
btn_tool1 = Button(fra3, text=*1*, height=4, width=4, command=tool1_click)
btn_tool1.grid(row=0, column=0)
btn_tool2 = Button(fra3, text=*2*, height=4, width=4, command=tool2_click)
btn_tool2.grid(row=0, column=1)
btn_tool3 = Button(fra3, text=*3*, height=4, width=4, command=tool3_click)
btn_tool3.grid(row=0, column=2)
btn_tool4 = Button(fra3, text=*4*, height=4, width=4, command=tool4_click)
btn_tool4.grid(row=0, column=3)
btn_tool5 = Button(fra3, text=*5*, height=4, width=4, command=tool5_click)
btn_tool5.grid(row=1, column=0)
btn_tool6 = Button(fra3, text=*6*, height=4, width=4, command=tool6_click)
btn_tool6.grid(row=1, column=1)
btn_tool7 = Button(fra3, text=*7*, height=4, width=4, command=tool7_click)
btn_tool7.grid(row=1, column=2)
btn_tool8 = Button(fra3, text=*8*, height=4, width=4, command=tool8_click)
btn_tool8.grid(row=1, column=3)
fra6 = Frame(window, width=316, height=731, bg=*white*, highlightbackground=*black*, highlightthickness=2)
fra6.place(x=1525, y=250)
lb4 = Label(fra6, width=22, height=2, text=*Результаты расчёта*, font=*Rockwellnova 16*)
lb4.place(x=0, y=4)
txt_result = Text(fra6, width=38, height=38)
txt_result.place(x=0, y=74)