57,399 questions
0
votes
1
answer
57
views
How to hide / show a GPUI window
So I'm trying to make an app using zed's GPUI that can hide and show based on a field in the struct.
However, I can only cx.remove_window's but never actually spawn back the window..
Even using ...
Best practices
1
vote
1
replies
30
views
EMP created in service now on ADA issue , but the main problem seeming to be the version of my angular
We are using angular version 15. As part of our internal UI modules for styling from the client side itself, according to those versions of those modules there was an ADA issue.
The ADA issue is about ...
Best practices
0
votes
4
replies
84
views
How does Apple handle showing selection in a menu picker that shows an SF Icon as its selected value?
in my app I have a SwiftUI Menu component that shows an SF icon in its label to represent its selected value like so:
Ideally, I'd like to have the image to the left of the text in the menu list:
...
Tooling
0
votes
3
replies
91
views
Advice on tools to code web-GUI or standalone-app to control iterative LLM finetuning workflow?
I’m fine-tuning LLMs using PyTorch on a workstation’s GPU that’s physically accessible in our office. I’d like to build a GUI—either a web-based one accessible from any office computer or a standalone ...
1
vote
1
answer
116
views
How to upgrade code from rust iced 0.12 to iced 0.14?
I have this working code in iced 0.12 and I want to upgrade it to iced 0.14.
use iced::widget::{container, text};
use iced::{Application, Color, Command, Element, Settings, Subscription, Theme};
use ...
3
votes
1
answer
84
views
How to include namespaces correctly in Windows manifest file
I'm writing in C for Windows using GNU gcc MinGW64, in Codeblocks. I have embedded a Windows manifest file and a resource script file in my project. I would like to achieve maximum non-ugliness for my ...
1
vote
1
answer
73
views
How to use a thread in rust iced, to change the color of a label?
I want to create a gui in rust (with iced 0.12). it has a label that has three possible colors green orange red. the color should change cyclically (green orange red green orange red ...) every 2 ...
Best practices
0
votes
0
replies
52
views
Name for a datatable picker inside a modal
So I have an autocomplete from a form in a page to add a reference to the registry from another table, it works normally, it also includes a button which when pressed, it opens a modal with a ...
-1
votes
1
answer
43
views
Color filling doesn't follow the rounding in SwiftUI
I defined the following shape:
struct DisplayView: View {
var body: some View {
ZStack{
RoundedRectangle(cornerRadius: 20)
.stroke(Color.black, lineWidth: 1)
...
0
votes
1
answer
67
views
How to handle @source for a React UI Library in production?
I am currently building a custom React UI library (monorepo structure) using Tailwind CSS v4.
During development with Storybook, my styles only render correctly if I explicitly point to the source ...
Tooling
0
votes
0
replies
50
views
What Criteria Make a Programming Language Suitable for GUI Development?
I am currently working on developing an interactive graphical user interface (GUI) for a work project, and I am exploring my options for programming languages. I am considering languages such as ...
1
vote
1
answer
44
views
How to get coordinates of picked points with open3D?
This Python 3.12 and Open3D 0.19.0 script on Ubuntu 24.04:
import open3d as o3d
c = o3d.geometry.TriangleMesh.create_cylinder(2, 20)
c.paint_uniform_color([0.1, 0.9, 0.1])
c.compute_vertex_normals()
...
0
votes
1
answer
65
views
Is there a different way to get the menu in this simple Open3D Python script?
This Python 3.12 and Open3D 0.19.0 script on Ubuntu 24.04:
import open3d as o3d
c0 = o3d.geometry.TriangleMesh.create_cylinder(0.5, 5)
c0.paint_uniform_color([0.1, 0.9, 0.1])
c0....
0
votes
1
answer
55
views
C# Maui Secondary window/contentpage opens the same size as MainPage
I programmed a secondary window to open when a button is clicked, set a specific size of it in XAML, but when it opens (even when built and run as a final product) the layout of the window is in the ...
Advice
0
votes
0
replies
31
views
How to pick points and save their coordinates in MeshLab 2025.07?
When I click on PickPoints icon in MeshLab 2025.07, I'm getting this screen:
The Form window appears, but clicking on the vertices does nothing. How to pick points and save their coordinates?
I've ...