어댑터를 선택하고 선택한 어댑터의 IP를 변경할 수 있습니다. import tkinter as tk from tkinter import messagebox import wmi # WMI 객체 생성 wmi_obj = wmi.WMI() # 네트워크 어댑터를 가져와서 리스트에 저장 adapter_config = wmi_obj.Win32_NetworkAdapterConfiguration(IPEnabled=True) adapter_list = [adapter.Caption for adapter in adapter_config] # tkinter GUI 생성 root = tk.Tk() root.title("네트워크 설정 변경") # 어댑터 선택 프레임 adapter_frame = tk.Frame(root) adap..
# tkinter 모듈 연결 import tkinter # 윈도우창 생성 win1=tkinter.Tk() # 윈도우 타이틀 win1.title('윈도우 타이틀') # 윈도우 창 크기와 위치 (가로x세로+X좌표+Y좌표) win1.geometry('150x50+600+300') # 윈도우 창 크기 고정 (상하, 좌우) win1.resizable(False, False) # 라벨 생성 label1 = tkinter.Label(win1, text = '라벨이름') label1.pack() # 버튼 생성 button1 = tkinter.Button(win1, text = '버튼이름') button1.pack() # 윈도우 창을 종료될 때 까지 실행 win1.mainloop()