3,695 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
1
answer
336
views
RealityKit performance is very low
Having successfully managed to get my app running with RealityKit instead of SceneKit, I'm noticing a distinctly lower frame rate with the same model. If anything, the model should be slightly better ...
0
votes
2
answers
126
views
Creating a bordered Button in Tkinter
I want to create a class for a Tk.Button in a Tk.Frame so that the button can have a border color independent of its background color.
I wrote this code which creates a button in a frame just as I ...
1
vote
0
answers
65
views
Load Json frame, but load "r" type frame and "c" not load
[] this image show the difference between "r" and "c" value. You can see Code in json file.
[1]enter image description here
In this image show the result of type "c"
If ...
0
votes
1
answer
65
views
"background blur" in SwiftUI?
I want to draw image overlapped with a blurred panel with a text. The problem is the panel frame depends on text frame. In the same time mask modifier is set separately from text and panel.
My code:
...
-1
votes
1
answer
167
views
How do I remove (or close or dispose) current page from frame in WPF?
I have a MainWindow with some buttons for navigation. These buttons opens up a Page in a Frame and of course this page gets added to the Frame's navigation history.
Now let's say I have 6 open pages ...
1
vote
0
answers
26
views
Frame Motion Animation
I have a scrollable element horizontal, I want to start the animation even they are hidden on x-axis, I want to detect my element if they visible on Y-Axis only I am using frame motion, I tried put ...
2
votes
1
answer
82
views
Aligning grid columns between parent and container frames using tkinter
Using Python and tkinter I have created a dummy app with a scrollable frame. There are two column headings in a container frame. The container frame also contains a canvas. Inside the canvas is an ...
0
votes
1
answer
76
views
HTML elements moving when I add frames and containers
I've searched around and I don't find nothing, for a title of context, in the past few days I have been building my portfolio, I am a backend dev so I am not used to any of these things.
I added a ...
-1
votes
1
answer
62
views
Same frame for login and sign up
I am working on a project for which i need to make a login and sign up. I am an beginner in java swing so i am facing some issues. I have a basic frame for both login and sign up but they don't appear ...
1
vote
2
answers
233
views
Aligning frames in tkinter python, (customtkinter)
I'm making an app in python, with the customtkinter library. I'm using the grid() widget manager. So far, I only have a few frames as the basic layout, but can't align them properly.
The issue is, ...
0
votes
1
answer
36
views
Convenience variable for locals pointer in gdb
currently I am doing a CTF challenge and I use gdb a lot. For overflows (getting information via printf or overwriting the RET pointer with puts) it is very helpful to get the locals pointer from the ...
0
votes
1
answer
254
views
Python Tkinter: Inside packed frame, how to equally distribute grid() column widths?
I need to use a Frame widget to do this; I know I can do it without using the frame and just use a big grid to contain everything (with columnspan for the canvas etc.), but I'd like to put stuff in ...
2
votes
1
answer
109
views
Netgraph Animation — how to display frame numbers
I'm trying to add a frame number to a simulation visualization modified from here. Is there any simple way to add a frame number to this animation so that it displays as a part of the plot title?
...
0
votes
0
answers
55
views
Some widgets don't appear in the main app
I'm trying to make an GUI to launch Ansible playbook, I've done a main app container with a menu to swicth between different frame.
The main.py looks like this:
#!/usr/bin/python2.7
# -*- coding: utf-...
0
votes
2
answers
61
views
access a component in a tkinter frame class from another frame class
I created a 2 Frames application in tkinter inspired by https://www.geeksforgeeks.org/how-to-change-the-tkinter-label-text/. The purpose is to import a new image by clicking on the start button, and I ...