Z-order is an ordering of overlapping two-dimensional elements in a graphical user interface.
0
votes
1answer
15 views
Zorder for 3D display
I have 2 div:
<div id="one"></div>
<div id="two"></div>
Normally the 2nd is over the first. But I want the first to stay in front with zorder:
div {
position: absolute;
...
1
vote
1answer
75 views
Keep Control always on top
Is it possible to keep a control (Panel) always over all other controls even if they also use Control.BringToFront()?
I tired to use BringToFront itself, but it seems that this loose its ...
0
votes
1answer
91 views
Form moving to the back and staying active
I have a largish Delphi 6 app that I have ported to Delphi XE3. At one point the main form launches another non-modal form. Sometimes (say 50%) after a second or two the newly created form moves ...
0
votes
1answer
36 views
How to test if a view is in the top layer?
I have a View, I want to know if there is a way to test if the view is in the top layer or it has the biggest z-value.
1
vote
2answers
192 views
Change z order of image controls at runtime windows phone
I have several image controls placed on a canvas. I want to change the z order of a selected image control when user click on the app bar button.
In the image control class I have
public int ...
0
votes
2answers
49 views
WinAPI ZOrder woes
I have two windows, one smaller on top of other bigger. The window created first will always be on top. Neither BringWindowToTop(hWnd) nor SetWindowPos(hWnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | ...
0
votes
1answer
73 views
Silverlight ZOrder doesn' work for me in Bing control
I'm trying to make my popup widget to be on top in a map but setting Canvas.ZOrder doesn't help.
Here is XAML:
<m:Map x:Name="MainMap"
Margin="0,6,3,3"
ZoomLevel="{Binding ...
0
votes
0answers
27 views
Multithreading in UI
I have a winform from where the user starts a process with a button click and I display the running process information on another winform running on different thread. The code in the button click is ...
0
votes
1answer
164 views
Why is SetWindowPos failing to bring windows to the front of the z-order when I have UIAccess rights? (Windows 7)
I am having trouble with SetWindowPos failing to bring windows of external processes to the top of the z-order reliably. I am able to bring windows to the front like:
...
0
votes
1answer
93 views
Can I control z order of drawing primitives in OpenGL ES 2.0?
I'm still new to OpenGL ES 2.0 and have come to understand the transformation matrix operations moderately well. Though I'm a little unclear on the relevance of the z-order when drawing a primitive. ...
1
vote
0answers
20 views
Z-ordering makes no difference for drag-and-drop operations in QtQuick 2.0
I've come across an interesting z-order problem in qt-quick 2.0. I've got an 8x8 grid of 64 items (a chessboard), and each square is a drag target. The pieces are created dynamically. I worked out how ...
1
vote
1answer
509 views
Google Maps v2 Marker zOrdering - Set to top
I know there are a few threads around on this topic but i havent yet found a good enough solution.
I NEED to place a marker over the top of all other markers. How do i do this?
I have tried adding ...
1
vote
0answers
169 views
Delphi application window z order and MainFormOnTaskBar property
I'm maintaining an application written originally using Delphi 7 and ported to Delphi XE. Using Windows 7 we've experimented some problems like Modal Windows under the Main Window and the eventual ...
0
votes
1answer
136 views
WPF: Adding a ProgressBar to ListBox Items
I'm trying to make the background of my ListBoxItems to be constituted of a ProgressBar, but the "Z-Index" thing is not seemingly working for me. I have read somewhere that Grid doesn't support ...
2
votes
1answer
403 views
Delphi Panels and custom component Z order issue
I'm working on a personal project and I have been running into lots of issues lately resulting in many questions, but hey, thats what SO is for right? ;)
Anyhow I tried making a transparent TPanel ...
0
votes
3answers
658 views
Overlap navigation bar on ios 6 with other view
For an iphone project with an "unique" design (with which i am not happy at all) I need to draw a custom view which partially overlaps the navigation bar of a controller in a UINavigationController. ...
4
votes
1answer
188 views
MainFormOnTaskbar + tooltip causes focus-stealing
I built the code below using Delphi XE2. It creates Form1, and Form1 immediately creates an instance of Form2. When I press the button on Form2 a second Form2 is created.
Now if I hover the mouse ...
1
vote
0answers
93 views
Setting my C# form as a child to another application
I'm currently developing a form application which works as an overlay to another program (Skype). Right now, I'm using TopMost = true, but that's a pretty bad solution.
I have a handle to the Skype ...
1
vote
2answers
516 views
How to draw WPF Adorners on top of everything else?
I've added an Adorner to my DateTimePicker control but it's not shown on top of the other controls. Why? How do I fix it?
My XAML currently goes like this:
<UserControl ...
0
votes
1answer
155 views
freepascal/delphi components not appearing (z-order issue I think)
I had a PANEL on the form. Then dynamically I create many more panels and place them on the form to look like a menu.
By mistake I deleted the main PANEL. then put it back as a new control.
Now the ...
0
votes
1answer
103 views
Java z-ordering in a fake 3D plane?
I am implementing a project like Notch's "breaking the tower", in Java.
I have it mostly written, but I'm having difficulty with z-order.
When the objects "rotate" around the center they still draw ...
1
vote
2answers
483 views
JQuery popup appearing under some map elements
Pretty new to both JQuery and OpenLayers. Everything was going swimmingly until I've tried to open a modal dialog using JQuery's dialog class.
The dialog works fine except it appears under certain ...
1
vote
1answer
132 views
Reversing the Z-Order of all controls on a form
I'm trying to make screenshots of certain forms that are open in an application. These forms may be covered/obscured by other open forms. Using CopyFromScreen isn't practical. Using DrawToBitmap on ...
0
votes
1answer
116 views
What is an alternative to using GetWindow in a loop?
MSDN mentions the following remark for the GetWindow() function.
The EnumChildWindows function is more reliable than calling GetWindow
in a loop. An application that calls GetWindow to perform ...
1
vote
1answer
178 views
android z-order of View on MapView
I have a google MapView with ItemizedOverlays. I then add a imageView (not an Overlay) and attach to the MapView. How do I get the ItemizedOverlays to be on top of the imageView? I would like the ...
0
votes
0answers
109 views
PopupWindows in front of an open Dialog
With my android application approaching feature-complete status, I finally had to get around creating a small help-system(*), to help the user find out the less obvious features. My implementation is ...
0
votes
1answer
136 views
Win32 - Make dialog require focus/action
In Win32 programming the MessageBox function launches a dialog that requires action, you cannot give focus to another window in the application until you press 'OK'. Well I have a dialog box that I ...
0
votes
2answers
266 views
How to programmatically change the z-order of VideoViews in Android
I have an android app with a RelativeLayout, to which I programmatically add multiple VideoViews, all of which are playing at the same time. The VideoViews can be moved around by dragging, and they ...
1
vote
0answers
63 views
Arranging rectangles in intersection order so that for i<j we can guarantee that Ri is not containted in Rj
We are creating interactive SVG diagrams containing a large number of irregular rectangles. Our user clicks within an area of the SVG and based on that we provide more information about that object. ...
2
votes
1answer
236 views
Underyling form disappearing but only if dialog shown
This relates to a VB6 app that shows a C# form via interop.
An event in the C# form causes one of the VB6 app forms to show.
Usually, when this VB6 form is made to be hidden (Form.Hide) the ...
2
votes
1answer
266 views
wxPython: Making a frame be on top of everything
I want my frame to be always on top, but I want it to be really on top. I want no other windows to hide it, even if they are also "always on top". I'm using wx.STAY_ON_TOP and ...
1
vote
2answers
125 views
Adding a JComponent on top (z order) of the component in border layout
Border layout has been really popular as it stretches it's contents to fit the parent component. And so I have some JComponent that is laid out with BorderLayout.CENTER, and I need to show another ...
2
votes
1answer
207 views
Z-order implementation in XNA: cyclic overlapping?
What would be the best approach for implementing a z-order system, where something like the following becomes possible:
There are 4 rectangles: A, B, C and D.
Rectangle A overlaps Rectangle ...
1
vote
0answers
51 views
fullcalendar zorder issue
I have an issue with fullcalendar version v1.5.3.
This looks like it is due to the zorder of the events being rendered in the calendar. If I display the events in a day agenda format with 15 minute ...
0
votes
2answers
64 views
SVG z-order with opacity < 1
I'm constructing an SVG image (tree map, with ellipses for nodes) where I want to connect the ellipses with lines, but I want the lines to begin at the edges of the ellipses. Since calculating where ...
0
votes
1answer
152 views
How to send to back a control and freeze it here?
I would like to send a control to back of its container. Regardless some other controls are created and removed from the same container, I dont want this control to loose its position.
I dont have ...
0
votes
1answer
234 views
Keep one control over another always in windows forms .net
Lets say there are two overlapping controls:
Control A
Control B
I want to keep Control A over Control B in all situation.
The z-order of Control B can change dynamically either by calling ...
0
votes
1answer
273 views
Change Z order during the animation
I have 2 views with the same animation, during this animation these views should change your Z Orders for example The View A is over the View B during the animation I change this order, I'm getting ...
1
vote
2answers
306 views
Changing z-order of views that aren't related
How do I change the order of views displayed, when the two views I want to rearrange are not related?
I am trying to work on someone else's code, and they have a class which is a subclass of ...
0
votes
0answers
26 views
Rendering video in background
I want to render a video in the background and on Foreground I want to render a UI and 3D drawing. How could this be possible?
The official page says that it's possible. While the post on forum says ...
1
vote
0answers
161 views
Modify z-order of android Views, before launching an animation
I'm trying to set an animation in one of my gridview's item, and I'm stuck with the z-order. In fact, when I execute my animation (from a onItemClickListener of the GridView), the item is under (in ...
0
votes
1answer
313 views
z-index woes: svg element appearing behind canvas elements when it shouldn't be
I've been trying to make a HTML5 version of the cover of The Dark Knight Returns (the one with the lightning) for the last couple of hours.
I've pretty much finished but the svg batman I've made ...
2
votes
1answer
206 views
How is the soft keyboard in Android drawn?
From my understanding, the soft keyboard is actually a dialog window that underlies all other apllication windows.
When an application asks for the keyboard, the app's ViewRoot (and Window) is resized ...
2
votes
1answer
195 views
Draw order sorting in opengl
I have an orthographic projection, and I am drawing sprites. The problem is that the sprites appear in the order drawn in OpenGL. I would like to assign a Z value to them, and have them draw in a ...
2
votes
1answer
478 views
DrawingContext.DrawLine: Pen has no full opacity?
when I draw something like that (just random drawings here):
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
DrawingVisual visual = ...
0
votes
1answer
216 views
Z Order for Touch events/Annotation selection on an MKMapView
I have an MKMapView with several annotations on it, and one very important one that's on the center of the map. When the map is zoomed out a little, all the annotations appear clustered together and ...
0
votes
1answer
264 views
Issue with UIImageView z-index
In the interface designer, I have a very simple setup. The main view (which is a table cell view) has four sub-views, all siblings: UIImageView and three UILabels. I'm using UIImageView to display ...
1
vote
1answer
228 views
Keep Label on top of TabControl .NET
I have a label that I need to stay on top of my TabControl as I switch from tab to tab. I have tried calling the Label's BrintToFront method in the SelectedIndexChanged Event of the Tab Control but ...
3
votes
5answers
2k views
How to make button non transparent?
I wrote custom View which draws a circle. Then I put it on relative layout. Also I put standard button there, so that they overlap. And I see that button is transparent. How to make it non ...
0
votes
2answers
886 views
Android: how to bring Animation to front: bringToFront and zAdjustment/Z-ordering
I have a LinearLayout with two views in it, next to each other. When a view is tapped upon, it animates to full screen. This goes fine for the view on the right, but it fails for the left view:
I am ...