57,437 questions
0
votes
0
answers
42
views
In QML, startSystemResize does not work on macOS
I am developing a frameless window using QML and Python 3.13.8, PySide6 and QtQuick. I work on macOs Sequoia 15.2.
I want the borders of the content area to be shifted from the main window so I add ...
Best practices
0
votes
11
replies
41
views
Table layout adjusting insides of components
I want to display and configure multiple objects of the same class at the same time, while keeping up the good looks of a table. So: one line per entity, with multiple GUI elements per line for the ...
0
votes
0
answers
88
views
SwiftUI bottom sheet shows unexpected padding only on iPhone 17 Pro Max (iOS 18) — works fine on all other devices
I am using a .sheet in SwiftUI to show a bottom sheet with custom options.
The sheet is supposed to have zero padding on all sides (left, right, top, bottom) on every device.
It works correctly on:
...
0
votes
0
answers
46
views
Should the Result area in BaseX GUI 11.6 render the output from an XQuery Update?
I'm running XQuery Update from script in BaseX GUI 11.6. I've created a database and set WRITEBACK to TRUE, and the file updates as expected--i.e., when I open the input file from my file system, the ...
0
votes
1
answer
91
views
Rust Iced Markdown View isn't Showing in the window
I've tried the rust iced framework and tried to create a markdown view from the documentation and the code compiles and renderes the windows but the code
pub fn new() -> Self {
Self {
...
3
votes
2
answers
110
views
Korean Text word breaking problem in WinUI project
Korean text gets cut off in the middle of a word. The whole word should go to the next line.
<TextBlock
x:Name="IconButtonName"
Width="66"
Margin="2,2"
...
Best practices
0
votes
1
replies
90
views
Seeking for the best practice to add 'eye' option to secureField text box in swift
I'd like to add to my an option to expose the password value in my secure field textbox. Currently I'm doing it by rendering TextField if showPassword is on, and SecureField if it's off. However, the ...
Best practices
0
votes
3
replies
63
views
Is it acceptable to remove the H1 title from some pages?
I have received a request from some people in my organization to remove the titles on certain pages of a web application to save space (they hate scrolling down). I know this is not a good practice ...
1
vote
1
answer
125
views
Java Swing Invisible Image
Context:
I'm trying to make an app with java swing, however when trying to add a background to the Login Page, the image does not show up. It is there and moves other JComponents when adding a layout ...
0
votes
0
answers
106
views
Can't show Cv2 frame in pyqt6 QLabel pixmap
I am trying to show a video feed from a camera captured using cv2 in a PyQt6 window. I have done some experimenting and followed a few guides to create the code included below. It creates the window ...
Best practices
0
votes
0
replies
48
views
How to handle long text in a table-styled FlatList
I have this FlatList in React Native:
<FlatList
style={{ width: "100%"}}
data={cases}
ListHeaderComponent={
<View style={styles.listHeader}>
<Text ...
2
votes
1
answer
137
views
How do I make a matplotlib bar graph scale with the amount of items?
I am working on a small project and it is my first time using matplotlib, and I am struggling with how to make my bar graph look better with more inputs. The whole idea of the program is to read text ...
Advice
0
votes
2
replies
73
views
UI Element Detection
I am implementing a UI library, and I want to implement pixel-perfect hit detection.
For example, if a UI element is a red ellipse, when I click on a red pixel, I want a click event to be emitted; ...
0
votes
0
answers
53
views
How to create/update .rdl file in Visual Studio 2022
I want to update multiple reports for my project. Currently I am able to update the report using visual Studio 19, but I need to use Visual Studio 2022 to create and update the reports.
Also for ...
Best practices
0
votes
1
replies
68
views
Creating a PDF file of a webpage
I have one audit module which I need to implement in which I have to create one PDF document of a single webpage. The PDF document should consist of five pages which divides my webpage (there are ...