This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tkinter as tk | |
from tkinter import ttk, font | |
from tkinter import filedialog | |
import struct | |
import os | |
# Make the application DPI-aware (for Windows, jeez...) | |
try: | |
from ctypes import windll | |
windll.shcore.SetProcessDpiAwareness(1) |