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">
...
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...
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...
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...
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...
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...
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 ...
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="...