Advertisement
M405M

PythonGoPro

Jul 15th, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.69 KB | None | 0 0
  1.     global picReso
  2.     picReso = tk.StringVar()
  3.     global streamReso
  4.     streamReso = tk.StringVar()
  5.  
  6.  
  7.  #wiiiyyy3333
  8.         self.TCombobox2 = ttk.Combobox(top)
  9.         self.TCombobox2.place(relx=0.251, rely=0.196, relheight=0.034
  10.                 , relwidth=0.275)
  11.         self.value_list = [R1,R2,R3,]
  12.         self.TCombobox2.configure(values=self.value_list)
  13.         self.TCombobox2.configure(textvariable=unknown_support.combobox)
  14.         self.TCombobox2.configure(width=142)
  15.         self.TCombobox2.configure(takefocus="")
  16.  
  17.         self.TLabel6 = ttk.Label(top)
  18.         self.TLabel6.place(relx=0.251, rely=0.147, height=29, width=100)
  19.         self.TLabel6.configure(background="#eeeeee")
  20.         self.TLabel6.configure(foreground="#000000")
  21.         self.TLabel6.configure(font="TkDefaultFont")
  22.         self.TLabel6.configure(relief="flat")
  23.         self.TLabel6.configure(text='''Resolution''')
  24.         self.TLabel6.configure(width=100)
  25.  
  26.         self.TCombobox3 = ttk.Combobox(top)
  27.         self.TCombobox3.place(relx=0.058, rely=0.914, relheight=0.051
  28.                 , relwidth=0.333)
  29.         self.value_list = [HIGH,MEDIUM,LOW,]
  30.         self.TCombobox3.configure(values=self.value_list)
  31.         self.TCombobox3.configure(width=172)
  32.         self.TCombobox3.configure(takefocus="")
  33.  
  34.         self.TLabel7 = ttk.Label(top)
  35.         self.TLabel7.place(relx=0.058, rely=0.856, height=29, width=150)
  36.         self.TLabel7.configure(background="#eeeeee")
  37.         self.TLabel7.configure(foreground="#000000")
  38.         self.TLabel7.configure(font="TkDefaultFont")
  39.         self.TLabel7.configure(relief="flat")
  40.         self.TLabel7.configure(text='''Resolution''')
  41.         self.TLabel7.configure(width=150)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement