active questions tagged zorder - Stack Overflowmost recent 30 from stackoverflow.com2010-03-21T19:37:53Zhttp://stackoverflow.com/feeds/tag/zorderhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2385367/dynamically-loaded-flash-movie-is-on-top-of-jquery-dialog-how-to-change-zorder1Dynamically loaded flash movie is on top of jquery dialog: how to change zorder?bortaohttp://stackoverflow.com/users/2420762010-03-05T08:19:10Z2010-03-05T09:32:02Z
<p>A flash movie is loaded on a page via javascript (replaceChild on a div)</p>
<p>I add jquery datepicker to a input above this movie. </p>
<p>When the datepicker (or other jquery element) is shown, it is shown under the movie (wrong zorder)</p>
<p>The element do have "z-index: 99" in its css class</p>
<p>How do i bring the jquery element up?</p>
<p>[Edit]</p>
<p>Theres no styling on the flash object tag</p>
<p>This happens on Chrome and IE, on firefox it also happens, but some elements are over the movie (picture)</p>
<p><img src="http://img171.imageshack.us/img171/5519/capturadetelainteira050.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/740799/c-wpf-overlapping-controls-not-receiving-mouse-events2c# wpf overlapping controls not receiving mouse eventsNicholasFhttp://stackoverflow.com/users/02009-04-11T21:22:32Z2010-01-08T09:59:30Z
<p>Hi, I am building a canvas control. This root canvas has several overlapping children (canvas as well). This is done so each child can handle its own drawing and I can then compose the final result with any combination of children to get the desired behavior.</p>
<p>This is working very well as far as rendering is concerned. This does not work so well with mouse events however. The way mouse events works are as follow (using previewmousemove as an example):</p>
<p>1- If root canvas is under mouse, fire event
2- Check all children, if one is under mouse, fire event and stop</p>
<p>As such, only the first child I add will receive the mouse move event. The event is not propagated to all children because they overlap.</p>
<p>To overcome this, I attempted the following:
1- Override mouse events in the root canvas
2- For every event, find all children that want to handle the event using VisualTreeHelper.HitTest
3- For all children that returned a valid hit test result (ie: under mouse and willing to handle the event (IsHitTestVisible == true)), ???</p>
<p>This is where I am stuck, I somehow need to send the mouse event to all children, and stop the normal flow of the event to make sure the first child doesn't receive it twice (via handled = true in the event).</p>
<p>By using RaiseEvent with the same event passed on the children, things seem to work but somehow it raises the event on the parent (root canvas) as well. To bypass this I needed to create a copy of the event and set force set the source though it appears to be more of a hack than a solution. Is there a proper way to do what I am trying to do? Code example follows.</p>
<pre><code> public class CustomCanvas : Canvas
{
private List<object> m_HitTestResults = new List<object>();
public new event MouseEventHandler MouseMove;
public CustomCanvas()
{
base.PreviewMouseMove += new MouseEventHandler(CustomCanvas_MouseMove);
}
private void CustomCanvas_MouseMove(object sender, MouseEventArgs e)
{
// Hack here, why is the event raised on the parent as well???
if (e.OriginalSource == this)
{
return;
}
Point pt = e.GetPosition((UIElement)sender);
m_HitTestResults.Clear();
VisualTreeHelper.HitTest(this,
new HitTestFilterCallback(OnHitTest),
new HitTestResultCallback(OnHitTest),
new PointHitTestParameters(pt));
MouseEventArgs tmpe = new MouseEventArgs(e.MouseDevice, e.Timestamp, e.StylusDevice);
tmpe.RoutedEvent = e.RoutedEvent;
tmpe.Source = this;
foreach (object hit in m_HitTestResults)
{
UIElement element = hit as UIElement;
if (element != null)
{
// This somehow raises the event on us as well as the element here, why???
element.RaiseEvent(tmpe);
}
}
var handlers = MouseMove;
if (handlers != null)
{
handlers(sender, e);
}
e.Handled = true;
}
private HitTestFilterBehavior OnHitTest(DependencyObject o)
{
UIElement element = o as UIElement;
if (element == this)
{
return HitTestFilterBehavior.ContinueSkipSelf;
}
else if (element != null && element.IsHitTestVisible && element != this)
{
return HitTestFilterBehavior.Continue;
}
return HitTestFilterBehavior.ContinueSkipSelfAndChildren;
}
private HitTestResultBehavior OnHitTest(HitTestResult result)
{
// Add the hit test result to the list that will be processed after the enumeration.
m_HitTestResults.Add(result.VisualHit);
// Set the behavior to return visuals at all z-order levels.
return HitTestResultBehavior.Continue;
}
</code></pre>
http://stackoverflow.com/questions/1480836/minimizable-jframe-that-stays-on-top-of-main-application-window0Minimizable JFrame that stays on top of main application window.amarillionhttp://stackoverflow.com/users/33062009-09-26T09:22:04Z2009-10-13T19:25:17Z
<p>My apps pops up a dialog. Users usually want to switch back and forth between this dialog and the application window for a period of time. I want this dialog to stay on top, so that it doesn't get hidden behind the main application window. But at the same time I want the dialog to have a minimize button so that it can get out of the way if it's not needed for a while.</p>
<p>Here is what I've tried:</p>
<ul>
<li><p>use a modeless JDialog - the dialog stays in front nicely, but it doesn't not have a minimize button, and it doesn't have its own taskbar button either</p></li>
<li><p>use a JFrame - the dialog now has a minimize button and its own taskbar button, but when the main window gets focus the dialog is hidden behind it.</p></li>
<li><p>use a JFrame and add WindowListener.windowDeactivated() { this.toFront() } on the dialog. The problem with this is that toFront() also sets the focus, so that you get a weird focus flickering effect.</p></li>
<li><p>use a JFrame with setAlwaysOnTop - this is the neaerest solution, but now the window will stay on top of all other applications, not just my application.</p></li>
</ul>
<p>It would be easy if toFront just brought the JFrame to the front without changing the focus, but unfortunately that is not the case. Is there another way to change JFrame Z-order?</p>
<p>edit: It just occurred to me that if there were an easy way to "roll-up" a JDialog, i.e. minimize it but not to the taskbar, that would solve my problem too.</p>
http://stackoverflow.com/questions/1530169/place-a-window-behind-any-other-existing-third-party-window0Place a window behind any other existing third party windowJohn Richehttp://stackoverflow.com/users/1844042009-10-07T07:58:24Z2009-10-07T19:16:14Z
<p>In order to take a screenshot of a specific window, I need to place a white colored TForm behind that window. What Windows API could I use to change the z-order of my window and place it correctly ?</p>
http://stackoverflow.com/questions/1432466/change-the-z-order-of-subviews-on-the-iphone1Change the z-order of subviews on the iPhoneSrPichihttp://stackoverflow.com/users/02009-09-16T11:43:21Z2009-09-16T17:53:07Z
<p>I'm developing a game. I'm using about 150 UIImageView to hold the graphics. I'm simulating a 3D enviroment, so i would like to change the z-order (how close is an object to the camera). </p>
<p>I know there exists :
[superWindow exchangeSubviewAtIndex:i withSubviewAtIndex:j];</p>
<p>But for some reason it's not working, some of the subviews disappear an re-appear.</p>
<p>Now I just remove all subviews and add it again in the correct z-order, this is ok with 50 subviews (on a 2G iphone) but with 120 it takes half a second so the gameplay sucks (I dont have and 3GS so i didn't try there).</p>
<p>I'm using so many subviews because each one is a square, then i colored it, resize it and move it somewhere in the screen. I'm holding the subviews under a NSMutableArray...</p>
http://stackoverflow.com/questions/987053/how-to-show-form-in-front-in-c0How to show form in front in C#corlettkhttp://stackoverflow.com/users/692242009-06-12T14:49:47Z2009-06-12T16:20:18Z
<p>Folks,</p>
<p>Please does anyone know how to show a Form from an otherwise invisible application, <em>and</em> have it get the focus (i.e. appear on top of other windows)? I'm working in C# .NET 3.5.</p>
<p>I suspect I've taken "completely the wrong approach"... I do <strong>not</strong> <em>Application.Run(new TheForm ())</em> instead I <em>(new TheForm()).ShowModal()</em>... The Form is basically a modal dialogue, with a few check-boxes; a text-box, and OK and Cancel Buttons. The user ticks a checkbox and types in a description (or whatever) then presses OK, the form disappears and the process reads the user-input from the Form, Disposes it, and continues processing.</p>
<p>This works, except when the form is show it doesn't get the focus, instead it appears behind the "host" application, until you click on it in the taskbar (or whatever). This is a most annoying behaviour, which I predict will cause many "support calls", and the existing VB6 version doesn't have this problem, so I'm going backwards in usability... and users won't accept that (and nor should they).</p>
<p>So... I'm starting to think I need to rethink the whole shebang... I should show the form up front, as a "normal application" and attach the remainer of the processing to the OK-button-click event. It should work, But that will take time which I don't have (I'm already over time/budget)... so first I really need to try to make the current approach work... even by quick-and-dirty methods. </p>
<p>So please does anyone know how to "force" a .NET 3.5 Form (by fair means or fowl) to get the focus? I'm thinking "magic" windows API calls (I know</p>
<p><strong>Twilight Zone:</strong> This only appears to be an issue at work, we're I'm using Visual Studio 2008 on Windows XP SP3... I've just failed to reproduce the problem with an SSCCE (see below) at home on Visual C# 2008 on Vista Ulimate... This works fine. Huh? WTF? </p>
<p>Also, I'd swear that at work yesterday showed the form when I ran the EXE, but not when F5'ed (or Ctrl-F5'ed) straight from the IDE (which I just put up with)... At home the form shows fine either way. Totaly confusterpating!</p>
<p>It may or may not be relevant, but Visual Studio crashed-and-burned this morning when the project was running in debug mode and editing the code "on the fly"... it got stuck what I presumed was an endless loop of error messages. The error message was something about "can't debug this project because it is not the current project, or something... So I just killed it off with process explorer. It started up again fine, and even offered to recover the "lost" file, an offer which I accepted.</p>
<pre><code>using System;
using System.Windows.Forms;
namespace ShowFormOnTop {
static class Program {
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//Application.Run(new Form1());
Form1 frm = new Form1();
frm.ShowDialog();
}
}
}
</code></pre>
<p><strong>Background:</strong> I'm porting an existing VB6 implementation to .NET... It's a "plugin" for a "client" GIS application called <a href="http://www.mapinfo.com/" rel="nofollow">MapInfo</a>. The existing client "worked invisibly" and my instructions are "to keep the new version as close as possible to the old version", which works well enough (after years of patching); it's just written in an unsupported language, so we need to port it.</p>
<p><strong>About me:</strong> I'm pretty much a noob to C# and .NET generally, though I've got a bottoms wiping certificate, I have been a professional programmer for 10 years; So I sort of "know some stuff".</p>
<p>Any insights would be most welcome... and Thank you all for taking the time to read this far. Consiseness isn't (apparently) my forte. </p>
<p>Cheers. Keith.</p>
http://stackoverflow.com/questions/828770/how-to-know-if-my-winform-is-on-top-of-other-windows-in-c0How to know if my winform is on top of other windows in c#?pablitohttp://stackoverflow.com/users/307292009-05-06T09:16:24Z2009-05-06T10:20:01Z
<p>I need to know if a specific window in my application is on top of all the other windows (including other applications).
I tried the <code>TopLevel</code> property but it tells if it is Toplevel within my application only, I would need to know related to other applications also.
How can it be done, preferring not using windows API?</p>
http://stackoverflow.com/questions/825595/how-to-get-the-zorder-in-windows0How to get the zorder in windows? user84584http://stackoverflow.com/users/845842009-05-05T15:59:21Z2009-05-05T16:41:32Z
<p>I'm making an application where I interact with each running application, right now, I need a way of getting the windows zorder, for instance, if firefox and notepad are running, I need to know which is the must upfront...
Any ideas ? (basides doing this for each application mainWindow I also need to do it for it's childs and sisters (windows belonging to the same process) windows)</p>
<p>Best Regards,
Jose</p>
http://stackoverflow.com/questions/392790/showing-flash-above-content0Showing flash above content.Stavros Korokithakishttp://stackoverflow.com/users/281962008-12-25T12:56:51Z2008-12-26T17:12:36Z
<p>I have a page with a tutorial (<a href="http://www.poromenos.org/tutorials/bittorrent/download" rel="nofollow">http://www.poromenos.org/tutorials/bittorrent/download</a>), but the site layout obscures the flash player, which is too wide. Is there a way to show the flash above the content through the z-order (or something else, lightbox-y)?</p>