Install jupyter notebook in Anaconda environment, create shortcuts, add/delete kernels, configure theme colors and toolbars [Update]

Install jupyter notebook, create shortcuts, add/remove kernels, configure theme colors and toolbars in Anaconda environment Tip: This article is a record of a series of successful installation processes such as Anaconda + cuda + cudnn + TensorFlow + pytorch + jupyter notebook. Some steps have version number requirements, such as TensorFlow and cuda + cudnn. […]

Layui framework practical case (24): Solution to add a view source code button to the layedit toolbar

layUI framework practical case series articles Layui framework practical case (21): What things are uploaded by layui (layui.upload component, file file domain, php background upload) Layui framework practical cases (20): common condition judgment and information display skills (picture preview, dynamic table, text message read and unread, link sharing, information desensitization, built-in frame page) Layui framework […]

Front-end react 18.2 integrates ckeditor rich text editor – configure plug-ins and customize toolbar toolbar

Article directory ?Foreword ?Introduce ckeditor ?npm package introduction ?cdn resource introduction ?Custom plug-ins Customized yma16 configuration plug-in ?Summarize ?Finish ?Foreword Hello everyone, I am yma16. This article shares about front-end react integration with ckeditor – configuring plug-ins and customizing toolbar toolbars. Previous articles in the react series: react-grapesjs – open source code learning and modification […]

8. K3 WISE development plug-in “Industrial document old order time thin plug-in toolbar button development example”

=============================== Table of contents: 1. Add toolbar button 2. Query the FMenuID and FID of the business document to which the toolbar button is added 3. Add the mapping relationship between toolbar buttons and business documents 4. Clicking the toolbar button triggers the event MainFunction 5. Toolbar button click trigger event DLL registration 6. Test […]

Display icon in toolbar when python tkinter program is minimized

The effect is as follows: import win32api, win32con, win32gui_struct, win32gui import os, tkinter as tk class SysTrayIcon (object): ”’SysTrayIcon class is used to display taskbar icons”’ QUIT = ‘QUIT’ SPECIAL_ACTIONS = [QUIT] FIRST_ID = 5320 def __init__(s, icon, hover_text, menu_options, on_quit, tk_window = None, default_menu_index=None, window_class_name = None): ”’ icon The path to the icon […]

CAD ObjectArx secondary development creates a toolbar to enable a drawer menu to appear when clicking a button

Create a toolbar in CAD and add menu commands, as shown below Reference article: cad-menu, toolbar, screen menu, enhanced toolbar The main implementation path is to create a dockable window, create a toolbutton in it, and add commands to the button click event to display the submenu menu at the button position. If smoother interaction […]

PyQt6 menus and toolbars

In this part of the tutorial, we created a status bar, menu bar, and toolbar. A menu is a set of commands located in the menu bar. The toolbar has some buttons and some common commands in the application. The status bar displays status information and is usually located at the bottom of the application […]

Win32 creates a custom icon for the toolbar

Note: Use the LoadImage function to load bmp images. This specifically refers to BMP images. In fact, LoadImage can load images in many formats. HBITMAP bitmap = (HBITMAP)LoadImage((HINSTANCE)GetWindowLong(hWnd, GWL_HINSTANCE), MAKEINTRESOURCE(IDB_LIST), IMAGE_BITMAP, 32, 32, NULL); The first parameter of LoadImage is the instance handle. When I am testing, if it is set to NULL or the […]

Menus and toolbars in PyQt4

Contents Previous Next In this part of the PyQt4 tutorial we will create menus and toolbars. A menu is a set of commands located in the menu bar. The toolbar has buttons that contain some of the commonly used commands in the application. Main window The class QtGui.QMainWindow provides a main application window. This enables […]

PyQt5: menus and toolbars

PyQt5: Menus and toolbars 1. Main window 2. Status bar 3. Menu bar 3.1 Submenu 3.2 Check the menu 3.3 Right-click menu 4. Toolbar 1. Main window QMainWindow provides the function of the main window, using it to create some simple status bars, toolbars and menu bars. The main window is the collective name of […]