Questions tagged [uielement]

UIElement is a base class for most of the objects that have visual appearance and can process basic input as part of the user interface.

404 questions
0
votes
1 answer

UWP Custom UI Element Render Bug

I've created a custom class for an Element that inherits from Path class (An Arrow Head drawing) in UWP now it seems to be working fine but when I try to put 2 of those elements on the screen one doesn't render. The one I initialized first is the…
Irkl1_
  • 71
  • 2
  • 8
0
votes
0 answers

How to inspect React Native App UI Elements in Release build

I'm trying to find out how to inspect UI elements in my react native application which I have downloaded from Appcenter. Is there anyway that I can connect my device to a browser or any tool which gives the option to inspect any app of iOS or…
Madhu
  • 869
  • 1
  • 17
  • 37
0
votes
0 answers

Printing UWP native controls across multiple pages with overflow content

In UWP (Universal Windows Platform), printing native controls is currently limited to displaying only one framework element per page. This constraint prevents the desired functionality of carrying overflow content from one page to another when using…
0
votes
0 answers

how to define a specific window point and assign a color palette trigger

There are some GUI elements/buttons in Logic pro X that don't have a state parameter (value = nil see appendix) accessebility insperctor and so I need to help to create an applescript to check the color palette of that GUI-button for subsequent…
0
votes
0 answers

What is this UI element called and how can I make it with PyQt?

I am using PyQt5. I am refering to the vertical bar that resizes widgets on the screen:
Heikki
  • 341
  • 2
  • 18
0
votes
1 answer

How can i put the UIElement behind the screen and get it with animation on view?

I want my textFields to hid behind the screen when "viewDidLoad" calls and then appearing smoothly on view by pushing a button. I just have a function like: UIView.animate(duration: 0.5, options: .curveEaseIn) { textField.center.x -=…
Fiesta
  • 3
  • 2
0
votes
0 answers

Applescript- UI Element Group changes when I scroll around page

I'd like to preface that I am very new to Applescript and UI scripting. I am working inside a proprietary CMS and wish to build a script to open a file search box, paste in the filename, select it, and click Finish. I have been successful scripting…
0
votes
0 answers

Unity UiElement created at runtime is not displayed

I created a uielement and gameobject in the runtime and set it to follow the world position of the gameObject. but the uielement is not displayed. I've tried a few things and found a way to display them. public void LateUpdate() { var position =…
0
votes
0 answers

Can't create Dynamic UI element in Reactjs

I want to generate JSX for UI dynamically in real time . I declare global setState this.state = { updatedNumOfLayer: 1 } and create one function handleChange handleChange = (event) => { this.setState({ updatedNumOfLayer:…
Bikram
  • 33
  • 4
0
votes
1 answer

WP7 UIElement property bound to an ObservableCollection isn't updated when an item is added or removed from the ObservableCollection

In the following code: a UIElement bound to an ObservableCollection does not update when items are added or removed from the collection. Specifically: A Person object includes an ObservableCollection property, Links, which can contain any number of…
0
votes
1 answer

How to make ListBox show different Elements (which are in a List) in wpf

Suppose I have a list which contains some elements and texts: public MainWindow() { InitializeComponent(); TextBlock t = new TextBlock(); t.Text = "Hello World!"; Ellipse e = new Ellipse(); …
M Ahmadzadeh
  • 121
  • 7
0
votes
0 answers

Using event triggers with Storyboards and other UIElements?

I'm trying to get a basic EventTrigger to work with a Storyboard and a UIElement. I'm using GalaSoft MVVMLight on Windows Phone 7. Here's what I have for an ellipse.
0
votes
2 answers

Clicking button makes Raycast go through to word space

I have an interactable ground like a network of hexagon tiles in my project. I am using a new UI system from Unity, UI toolkit, and clicking a UI button makes Raycast go through and interact with the tile below. I read about some dirty solutions,…
Wolfik
  • 286
  • 2
  • 7
  • 22
0
votes
2 answers

how to change multiple UI elements on runtime

I have many elements on my UI. I want to change the entire UI color. Basically like a new "Skin" for my HUD/Menu in game. What is the best way to do this? In UIBuilder, I can select a selector class and change the color, and it applies to all…
Sander Mez
  • 67
  • 1
  • 8
0
votes
1 answer

Bind an array of UIElements to Observalble collection in C#

I need to bind an arry of textblocks(which will be created by code behind) to an Observable Collection of some User Defined Type, so that each textblock will have one and unique element of ObsColl item. public class Car { private string…
Dheeraj
  • 69
  • 1
  • 9