autohide

AvalonDock autohide to side of pane instead of window

I have the following AvalonDock XAML: <ad:DockingManager Name="DockManager" Background="White"> <ad:ResizingPanel Orientation="Horizontal"> <ad:DockablePane ad:ResizingPanel.ResizeWidth="300" Name="LeftSideBar" SelectedIndex="0"> <ad:DockableContent Name="Connection" Title="Connection" IsCloseable="False"> ...

Can you auto hide frames/dialogs using wxPython?

I would like to create an application that has 3-4 frames (or windows) where each frame is attached/positioned to a side of the screen (like a task bar). When a frame is inactive I would like it to auto hide (just like the Windows task bar does; or the dock in OSX). When I move my mouse pointer to the position on the edge of the screen w...

How to Trigger autohide on the taskbar on WindowsCE

Hi All, im writing a C# program for a Windowsce 5.0 Device (PSION Teklogix Workabout Pro G2). The taskbar is set to autohide. I can't disable it completely, because the user sometimes needs to access the start menu or may like to manually show or hide the SIP. And it should not be displayed all the time, because i'd like to use as muc...

Automatically hide toolbar when it is not in use.

I am creating a Cocoa Application for Mac OS 10.6 >, and I want to hide the toolbar of an NSWindow automatically when it is not in use for at least 30 seconds. I think this can be done with NSTimers, but I'm not familiar with them and I don't know how I can implement this. Another problem is that both the NSToolbarDelegate and NSWindowD...

Win XP Autohide feature not working when Eclipse is running

I am running Eclipse with Windows XP. I have my desktop taskbar set to Autohide. When I pull the mouse to the bottom of the screen the taskbar/Start menu pops up as expected EXCEPT when Eclipse is running. When Eclipse is running, the only way to get the taskbar to pop up is to manually minimize all windows, then drag the mouse to the...

Show one <div> and hide another

I have two <div> elements: <div id="hidden"> <div id="hideitem"> <input id="item5" type="radio" class="item" name="item" value="gen"/>General Function </div> I set <div id="hidden"> to display:none. I want it to show when the radio button is clicked: $("#item5").click(function() { $("#hidden").show(); } But how can I hide <d...

Can't hide button when mouse leaves form...

Hi, I have a form where I want buttons at the very bottom edge of the form, with no gap to the border. These buttons shall be "auto-hide", so they only show when the mouse is in for example the lower 20 pixels of the form. So I use the MouseMove event to trigger this, like code below. However, if mouse leaves the form across the bottom ...

flex bound visibility messes up during fx animations

working in flex 4 i have a variable: [Bindable] public var visibility:Boolean = true; these effects: <fx:Declarations> <mx:Fade id="fadeOut" duration="800" alphaFrom="1.0" alphaTo="0.0"/> <mx:Fade id="fadeIn" duration="800" alphaFrom="0.0" alphaTo="1.0"/> </fx:Declarations> and the following component: <s:HGroup visible="...