active questions tagged focus - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T04:29:11Zhttp://stackoverflow.com/feeds/tag/focushttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1508348/set-focus-to-iframe-body-content-in-firefox1set focus to iframe body/content in firefox ?mm2009-10-02T08:38:41Z2009-12-05T01:05:15Z
<p>hi, i have an ifram, which has hidden visibility.
i click on button - iframe will be visible and i want to focus on its body/content.
because now i must click on button and then into iframe, so thats two clicks. i want to do it on one click, but dont know how to focus in firefox.</p>
<p>in explorer it is ok:</p>
<pre><code>var iframe_window = window.frames["myFrame"];
iframe_window.document.body.focus();
</code></pre>
<p>try lot of examples for firefox, but they dont work. anybody know how to do it in firefox ? thanks.</p>
http://stackoverflow.com/questions/1848716/problem-with-drawing-focus-frame-in-qt0Problem with drawing focus frame in Qtzarzych2009-12-04T18:14:39Z2009-12-04T18:14:39Z
<p>I'm trying to create custom widget inheriting QFrame. All works fine, but I'm unable to draw the focus rectangle around my widget. Below is the sample code I use for drawing:</p>
<p>frame.h</p>
<pre><code>class Frame : public QFrame {
Q_OBJECT
public:
Frame(QWidget *parent = 0);
~Frame();
protected:
void paintEvent(QPaintEvent *event);
private:
Ui::Frame *ui;
};
</code></pre>
<p>frame.cpp</p>
<pre><code>Frame::Frame(QWidget *parent) :
QFrame(parent),
ui(new Ui::Frame)
{
ui->setupUi(this);
setFocusPolicy(Qt::ClickFocus);
}
Frame::~Frame()
{
delete ui;
}
void Frame::paintEvent(QPaintEvent *event)
{
QFrame::paintEvent(event);
if (hasFocus()) {
QStylePainter painter(this);
QStyleOptionFocusRect option;
option.initFrom(this);
option.backgroundColor = palette().dark().color();
painter.drawPrimitive(QStyle::PE_FrameFocusRect, option);
}
}
</code></pre>
<p>Do you have any idea what is wrong?</p>
http://stackoverflow.com/questions/1826308/controling-tabbing-focus-within-popup-javascript-widget-context2Controling tabbing focus within popup javascript widget contextSteerpike2009-12-01T13:50:23Z2009-12-04T09:48:39Z
<p>Hello,</p>
<p>I'm working on a lightbox style javascript plugin that pops up an image with next+previous buttons and a close button. I want to make it so that tabbing will only jump between the three presented buttons in the popup, not go through the three of them and then continue on the page content in the background.</p>
<p>Does anyone have any suggestions on the best way to do this, currently I'm thinking that the best way is to make an array of tabbable elements when the popup appears and just capture tabs to iterate through that array setting focus on each one and preventing default tab behaviour.</p>
<p>Anyone know if there are any best practices regarding this?</p>
http://stackoverflow.com/questions/673536/wpf-cant-set-focus-to-a-child-of-usercontrol2WPF - Can't set focus to a child of UserControlStimul8d2009-03-23T14:16:30Z2009-12-02T22:12:43Z
<p>I have a <code>UserControl</code> which contains a <code>TextBox</code>. When my main window loads I want to set the focus to this textbox so I added <code>Focusable="True" GotFocus="UC_GotFocus"</code> to the <code>UserControl</code>s definition and <code>FocusManager.FocusedElement="{Binding ElementName=login}"</code> to my main windows definition. In the <code>UC_GotFocus</code> method i simply call <code>.Focus()</code> on the control i want to focus on but this doesn't work.</p>
<p>All i need to do is have a <code>TextBox</code> in a <code>UserControl</code> receive focus when the application starts.</p>
<p>Any help would be appreciated, thanks.</p>
http://stackoverflow.com/questions/148729/how-to-set-change-remove-focus-style-on-a-button-in-c1How to set/change/remove focus style on a Button in C#?pbean2008-09-29T13:51:43Z2009-12-02T11:55:57Z
<p>I have a couple of buttons of which I modified how they look. I have set them as flat buttons with a background and a custom border so they look all pretty and nothing like normal buttons anymore (actually, they look like Office 2003 buttons now ;-). The buttons have a border of one pixel.</p>
<p>However when the button gets selected (gets the focus through either a click or a keyboard action like pressing the tab key) the button suddenly gets and extra border around it of the same colour, so making it a two pixel border. Moreover when I disable the one pixel border, the button does not get a one pixel border on focus.</p>
<p>On the net this question is asked a lot like 'How can I disable focus on a Button', but that's not what I want: the focus should still <em>exist</em>, just not <em>display</em> in the way it does now.</p>
<p>Any suggestions? :-)</p>
http://stackoverflow.com/questions/1829731/html-javascript-pages-focus0HTML/JavaScript: Page's focusJamesBrownIsDead2009-12-01T23:40:24Z2009-12-02T05:32:23Z
<p>I have a shopping cart-like form. When a user clicks on the page, in an empty space, somehow, the "Delete Item" button gets focus. Therefore, if the user clicks somewhere and presses enter, items are deleted from their cart. This only happens in IE.</p>
<p>What might be causing this? <strong>How can I make sure the only time this button gets focus is when it's actually clicked?</strong> </p>
http://stackoverflow.com/questions/1824030/could-it-be-possible-to-make-css-selector-affect-other-elements-in-the-page-witho2Could it be possible to make css selector affect other elements in the page without javascript?Jronny2009-12-01T04:37:01Z2009-12-01T05:42:24Z
<p>For example, I want to make two textboxes have the same style when either is focused:</p>
<pre><code><div class="divTxt">
<input type="text" id="a" class="a" />
<input type="text" id="b" class="b" />
</div>
</code></pre>
<p>and the css would be:</p>
<pre><code>.a:focus
{
background-color:Blue;
}
.b:focus
{
background-color:Yellow;
}
</code></pre>
<p>What I need is make a's background-color:Yellow when b is focused and vice versa.
any possibilities? Thanks a lot.</p>
http://stackoverflow.com/questions/1821001/jquery-how-do-i-hide-a-div-when-textbox-is-out-of-focus1JQuery: How do I hide a DIV when textbox is out of focus?Chuck2009-11-30T16:53:44Z2009-11-30T17:03:47Z
<p>This is the code I have:</p>
<pre><code><body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="txtInsertComments" CssClass="expanding" runat="server" AutoPostBack="false" TextMode="MultiLine"></asp:TextBox>
</div>
<div id="commands">
<table cellpadding="0" cellspacing="0" width="400px" id="tblCommands">
<tr>
<td style="width: 50%; text-align: center;">
<asp:LinkButton ID="lnbInsertRes" runat="server" CommandName="Insert" Font-Underline="false">Insert</asp:LinkButton>
</td>
<td style="width: 50%; text-align: center;">
<asp:LinkButton ID="lnbCancelRes" runat="server" CommandName="Cancel" Font-Underline="false">Cancel</asp:LinkButton>
</td>
</tr>
</table>
</div>
</form>
</body>
<script type="text/javascript">
$(function()
{
$("#commands").hide("normal");
$("textarea[id$=txtInsertComments]").focus(function()
{
$("#commands").show("normal");
});
});
</script>
</html>
</code></pre>
<p>First, when this page is loading, the div #command is loaded very quick and then disappears. I need the div to remain hidden until the textbox txtInsertComments control is clicked or gets focus.</p>
<p>Second, when the user click out of the textbox txtInsertComments or that the textbox lost focus, the div #command is still there and not hidden.</p>
<p>Any help is appreciated.</p>
http://stackoverflow.com/questions/1811780/in-winforms-can-control-focus-change-automatically-if-yes-can-i-somehow-disti1in WinForms can control focus change "automatically"? if yes, can I somehow distinguish this from user triggered focus change?EndangeringSpecies2009-11-28T06:32:02Z2009-11-28T14:26:23Z
<p>I am not fully sure about this, but I seem to be observing cases where focus shifts automatically from one control to another, even after I explicitly programmatically set the focus to control that I want to have focused. Maybe it has to do with the control in question being a panel, and it seems that WinForms is happier to have a textbox focused than a panel.</p>
<p>Well, first of all, can somebody provide expert insight on this matter? And also, if it is indeed possible for the focus to change without explicit order from me (whether user action or programmatic) is it possible to programmatically distinguish the resulting Leave and Enter events? That is, I would like to programmatically counteract Leave/Enter events not caused by myself, but I still want to allow the user to change focus normally as part of work with the GUI.</p>
http://stackoverflow.com/questions/1026849/how-can-i-prevent-focus-change-when-showdialog-exits1How can I prevent focus change when ShowDialog exits?Simon2009-06-22T12:11:34Z2009-11-28T06:00:24Z
<p>I'm trying to implement an alt-tab like behaviour for our application. When the user presses ctrl-tab, a form pops up (using <code>ShowDialog</code>); when they press it again, it focuses the next control in the app's main form. When they release ctrl, the form is hidden.</p>
<p>Unfortunately, when that happens, focus is sent to a different control to the one that was focused. How can I prevent focus change when ShowDialog exits?</p>
http://stackoverflow.com/questions/1800188/preventing-wpf-treeviews-gotfocus-event-from-bubbling-up-the-tree0Preventing WPF TreeView's GotFocus event from bubbling up the treeAlex Marshall2009-11-25T21:47:07Z2009-11-25T22:30:41Z
<p>I'm trying to write an event handler that fires every time a node in a TreeView gets the focus. The problem I'm running into is that the event handler fires on the TreeViewItem (node) that I click on with the mouse, and then it continues to bubble up the control tree, even though I've set e.Handled = true on the RoutedEventArgs provided to the handler. Does anybody have an idea what the problem could be ? I've double checked my code and I can see no reason why this should be happening.</p>
http://stackoverflow.com/questions/1799967/asp-net-checkbox-changes-focus0ASP.NET checkbox changes focus?JamesBrownIsDead2009-11-25T21:10:18Z2009-11-25T21:14:23Z
<p>I have a checkbox control, and when it's clicked, the focus of the page changes to the top--the window scrolls to the top of the page.</p>
<p>Nowhere in the code am I specifying a change in focus, either in JavaScript on codebehind.</p>
<p>What could be causing this?</p>
http://stackoverflow.com/questions/1796671/move-focus-from-one-edit-text-box-to-another0Move focus from one Edit text box to anotherVamsi2009-11-25T12:39:25Z2009-11-25T14:24:55Z
<p>Hi,
I am writing a simple calculator application(using absolute layout with 3 edit boxes and some buttons), which has two inputtext boxes and a output box.</p>
<pre><code>input1 = (EditText) findViewById(R.id.input1);
input2 = (EditText) findViewById(R.id.input2);
</code></pre>
<p>now once user enters some numerics into input1 and presses '+', now i want to shift the focus from input1 to input2. How can i do that?</p>
<p>I tried the below code on keypress of '+'</p>
<pre><code>onClick(View arg0){
operator.setText("+");
//Move focus from input1 to input2
input1.clearFocus();
input2.setNextFocusDownId(input2.getId());
}
</code></pre>
<p>but this is not working.. can you please help me on this?</p>
http://stackoverflow.com/questions/1492491/html-form-needs-double-click-to-focus-on-field-1HTML form needs double click to focus on fieldChrissDegrece2009-09-29T13:19:48Z2009-11-25T13:37:24Z
<p>For some reason one of my forms (I have 2 forms in the same page) is not working properly because I need to double click on each form field in order to be able to enter data.</p>
<p>Any ideas why this may be happening? </p>
http://stackoverflow.com/questions/1784977/wpf-popup-focus-in-data-grid1WPF Popup focus in data gridhaxelit2009-11-23T18:14:40Z2009-11-23T21:27:45Z
<p>Hello,
I'm creating a custom UserControl to be used inside a DataGrid editing template.
It looks like this:</p>
<pre><code><UserControl
x:Class="HR.Controls.UserPicker"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:tk="http://schemas.microsoft.com/wpf/2008/toolkit"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid>
<TextBlock x:Name="PART_TextBox" Text="Hello WOrld" />
<Popup Width="234" Height="175" IsOpen="True" StaysOpen="True"
Placement="Bottom"
PlacementTarget="{Binding ElementName=PART_TextBox}"
>
<TextBox
x:Name="searchTextBox"
Text="&gt;Enter Name&lt;"/>
</Popup>
</Grid>
</UserControl>
</code></pre>
<p><strong>edit:</strong>
I've narrowed down the code a bit.
It seems that if I put a Popup with textbox inside the CellEditingTemplate directly the textbox gets focus no problem. When I move that code into a UserControl I can no longer select the textbox when editing the cell.</p>
<p>Is the UserControl doing something funny with the focus ?</p>
<p><hr></p>
<p>The problem is when i edit the cell in the datagrid I get the user control showing up but I can't click in the TextBox searchTextBox. When I click on it the popup closes and the cell goes back to default.</p>
<p>I have tried copying and pasting all the code inside the user control and pasting it directly into the CellEditingTemplate and that interacts the way it should.</p>
<p>I was just wondering if the UserControl did something weird that prevents a popup from gaining focus because it works as expected when directly placed in the CellEditingTemplate ?</p>
<p>Thanks,
Raul</p>
http://stackoverflow.com/questions/1770198/gtk-how-to-hide-a-window-when-the-application-loses-focus0gtk: how to hide a window when the application loses focuski.lya.online.fr2009-11-20T12:36:10Z2009-11-20T21:58:28Z
<p>Hi,</p>
<p>I want to duplicate the behaviour of tool windows in OpenOfice. When the application loses focus, the tool windows (if they are not docked) are hidden.</p>
<p>So, I have a main window, and another utility window (<code>win_dock</code>). I want to hide <code>win_dock</code> when all the windows of the application loses focus and show it again if a window gain focus.</p>
<p>What I did is that I connected to the focus-in-event and focus-out-event of all windows of the application, and I maintain a counter of how many windows have focus. When this counter drops to zero, I want to hide <code>win_dock</code>, and if this counter is positive again, I want to show <code>win_dock</code></p>
<p>The problem is with this solution I can never focus <code>win_dock</code>. Because when I click on it, the main window drops the focus, so it hides <code>win_dock</code> that still hadn't gained the focus. Nevertheless the focus-in-event is still sent to <code>win_dock</code> and the windows reappears. But in the meantime it has lost the focus.</p>
<p>Do you have a better solution?</p>
<p>Here is the Vala source code:</p>
<pre><code>public class Main
{
private Gtk.Builder builder;
private Gtk.Window win_messages;
private Gtk.Window win_dock;
private int focus_count = 0;
public Main() {
builder = new Gtk.Builder();
builder.add_from_file("ui2.glade");
win_messages = builder.get_object("win_messages") as Gtk.Window;
win_dock = builder.get_object("win_dock") as Gtk.Window;
handle_focus(win_messages);
handle_focus(win_dock);
}
public void start(){
win_messages.show_all();
//win_dock.show_all();
Gtk.main();
}
private void handle_focus(Gtk.Window w) {
w.focus_in_event.connect ((w, e) => {
stdout.printf("Focus In (%s)\n", w.name);
focus_count++;
manage_focus(w == win_dock);
});
w.focus_out_event.connect((w, e) => {
stdout.printf("Focus Out (%s)\n", w.name);
focus_count--;
manage_focus(w == win_dock);
});
}
private void manage_focus(bool is_dock){
if(focus_count > 0) {
win_dock.show_all();
stdout.printf("Show (focus: %d)\n", focus_count);
} else if(is_dock) {
win_dock.hide_all();
stdout.printf("Hide (focus: %d, has: %d) dock\n", focus_count, win_dock.is_active ? 1 : 0);
} else if(!is_dock) {
if(win_dock.is_active) {
win_dock.hide_all();
stdout.printf("Hide (focus: %d, has: %d) !dock\n", focus_count, win_dock.is_active ? 1 : 0);
} else {
stdout.printf("Nop (focus: %d, has: %d) !dock\n", focus_count, win_dock.is_active ? 1 : 0);
}
}
}
public static int main (string[] args)
{
Gtk.init (ref args);
Main m = new Main();
m.start();
return 0;
}
}
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1263134/standard-way-to-detect-when-focus-leaves-an-element1Standard way to detect when focus leaves an elementerikkallen2009-08-11T21:47:23Z2009-11-20T12:21:12Z
<p>How can I, in a standard way, detect when focus leaves an element or any of its child elements.</p>
<p>blur won't do since it's fired when the focus goes into a child element.</p>
<p>IE provides the incredibly useful event focusout for this (it's like blur, but bubbles), but How can I do it in a standard way, except for attaching a blur handler to all the child elements?</p>
<p>Edit: apparently I was not clear about what I meant.</p>
<p>I have a structure like this:</p>
<pre><code><div id="parent">
<input type="text" id="child1">
<div id="child2" tabindex="0">yada</div>
</div>
<input type="text" id="outside"/>
</code></pre>
<p>I want to attach an event handler to parent to find out when focus leaves any of its child elements (child1 and child2) to go to an element outside of parent, e.g. the one with id "outside". In IE I can do this by binding to the focusout event, but that event does not exist in Firefox (or in the W3C DOM).</p>
http://stackoverflow.com/questions/1763679/auto-complete-in-wpf-making-a-popup-unfocusable0Auto-complete in WPF - Making a popup unfocusableunknown (google)2009-11-19T14:31:35Z2009-11-19T14:38:37Z
<p>I'm trying to create a custom UserControl that will mimic auto-complete as it works within Intellisense using WPF. I'm using a TextBox and a Popup containing a ListBox within my control. </p>
<p>I want to be able to keep keyboard focus set on the TextBox irrespective of whether or not the auto-completion popup is open so that a user can continue typing whilst simultaneously using up/down controls or the mouse to select elements in the popup to autocomplete the text. Is there any way this can be done in WPF?</p>
http://stackoverflow.com/questions/1761649/jquery-blur-with-an-exception0jQuery blur with an exceptionpgarama2009-11-19T08:01:09Z2009-11-19T08:52:52Z
<p>I have set a focus event on an input element. When there is a focus, jQuery searches for a div and displays it. That works. Wit the blur event on the same input element I make the div hide, which also works. But when I click on a link or want to select text in the shown div, it immediately disappears because of the blur event. How can i make an exception for the shown div?</p>
<pre><code>$("input.search-main-text").focus(function() {
$("div.quickResults").show();
});
$("input.search-main-text").blur(function() {
$("div.quickResults").hide();
});
</code></pre>
http://stackoverflow.com/questions/1754893/how-to-set-the-keyboardfocus-to-a-textbox-inside-a-usercontrol-programmatically0How to set the keyboardfocus to a textbox inside a UserControl programmatically?Dabblernl2009-11-18T10:05:20Z2009-11-18T23:50:26Z
<p>I have a UserControl that incorporates a textbox. I want to set the keyboardfocus to this textbox programmatically when the user clicks a button.
I tried this:</p>
<pre><code>private void Button_Click(object sender,EventArgs e)
{
Keyboard.Focus(MyUserControl);
}
</code></pre>
<p>no luck. Then I exposed the Textbox in the UserControl though a property of type TextBox</p>
<pre><code>private void Button_Click(object sender,EventArgs e)
{
Keyboard.Focus(MyUserControl.TextBox);
}
</code></pre>
<p>again no luck. Finally I made an eventhandler in the UserControl to handle the GotKeyboardFocus event, calling the Keyboard.Focus method on the textbox inside it.</p>
<p>Again no luck?!</p>
<p>How to do this??</p>
<p>EDIT:
The problem is not related to UserControls. It is an issue when you try to pass focus to an other UIElement in a Click or MouseDownHandler.
The XAML en code behind below tell their own story: the focus does pass to the textbox but is stolen back by the listbox.</p>
<pre><code><Window x:Class="FocusSpike.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<StackPanel>
<TextBox Name="FocusedTextBox" Height="30">
<TextBox.Style>
<Style TargetType="TextBox">
<Setter Property="Text" Value="I am unfocused..."/>
<Setter Property="Opacity" Value=".3"/>
<Style.Triggers>
<Trigger Property="IsKeyboardFocused" Value="True">
<Trigger.EnterActions>
<BeginStoryboard>
<Storyboard AutoReverse="True">
<DoubleAnimation Storyboard.TargetProperty="FontSize" To="20"/>
</Storyboard>
</BeginStoryboard>
</Trigger.EnterActions>
<Setter Property="Text" Value="I am focused!"/>
<Setter Property="Opacity" Value="1"/>
</Trigger>
</Style.Triggers>
</Style>
</TextBox.Style>
</TextBox>
<Button>Click to steal focus.</Button>
<ListBox>
<ListBoxItem GotFocus="Listbox_GotFocus">
<Label MouseDown="ListBoxItem_MouseDown">
Click to restore focus
</Label>
</ListBoxItem>
</ListBox>
</StackPanel>
</Window>
using System.Windows;
using System.Windows.Input;
namespace FocusSpike
{
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
FocusedTextBox.Focus();
}
private void ListBoxItem_MouseDown(object sender, MouseButtonEventArgs e)
{
Keyboard.Focus(FocusedTextBox);//This does not work, remove it!
}
private void Listbox_GotFocus(object sender, RoutedEventArgs e)
{
//Keyboard.Focus(FocusedTextBox);//uncomment to restore focus!
}
}
}
</code></pre>
http://stackoverflow.com/questions/1751912/giving-a-child-window-focus-in-ie80Giving a child window focus in IE8Andrew K2009-11-17T21:26:06Z2009-11-17T23:01:53Z
<p>I'm trying to launch a popup window from a Javascript function and ensure it has focus using the following call:</p>
<p><code>window.open(popupUrl, popupName, "...").focus();</code></p>
<p>It works in every other browser, but IE8 leaves the new window in the background with the flashing orange taskbar notification. Apparently this is a feature of IE8:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms536425%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms536425%28VS.85%29.aspx</a></p>
<p>It says that I should be able to focus the window by making a focus() call originating from the new page, but that doesn't seem to work either. I've tried inserting window.focus() in script tags in the page and the body's onload but it has no effect. Is there something I'm missing about making a focus() call as the page loads, or another way to launch a popup that IE8 won't hide?</p>
http://stackoverflow.com/questions/1748286/windows-forms-window-starting-up-out-of-focus-and-behind-executable-folder0Windows forms window starting up out of focus (and behind executable folder)Kevin Wilson2009-11-17T11:41:56Z2009-11-17T14:11:22Z
<p>Hi,</p>
<p>I'm getting some strange behaviour in the start-up of a Windows app and wondered if anyone could throw any light on what is happening and how to get around it.</p>
<p>The problem is with the start-up of the app - it should show a splash screen then a login form. The code for this is:</p>
<pre><code> [STAThread]
static void Main()
{
Application.ThreadException += Application_ThreadException;
MainForm mainForm = null;
Thread splashThread = new Thread(ShowSplash);
try
{
// set up app
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
// Splash screen
Splash splash = new Splash();
splashThread.Start(splash);
// enable logging
log4net.Config.XmlConfigurator.Configure();
// Create main form
mainForm = new MainForm();
// kill splash
HideForm(splash);
splashThread.Abort();
}
catch (Exception e)
{
splashThread.Abort();
MessageBox.Show(e.Message, "An exception occurred: ", MessageBoxButtons.OK, MessageBoxIcon.Error);
Environment.Exit(0);
}
// start
Login login = new Login();
login.Show();
if (!mainForm.IsDisposed)
{
Application.Run(mainForm);
}
}
static void ShowSplash(object splash)
{
if (!(splash is Splash))
throw new ArgumentException("Splash screen is of wrong type.");
Splash splashForm = (Splash) splash;
splashForm.ShowDialog();
}
// Thread safe hide form
private delegate void HideFormCallback(Form form);
private static void HideForm(Form form)
{
if (form == null || form.IsDisposed)
return;
if (form.InvokeRequired)
{
HideFormCallback d = HideForm;
form.Invoke(d, new object[] { form });
}
else
{
form.Hide();
}
}
</code></pre>
<p>So, we're starting up a new thread with the splash screen, setting up the rest of the app in the meantime, then killing the splash screen just before showing the login form.</p>
<p>The problem I'm having is that the login form doesn't have focus when the app starts. The splash screen pops up and goes away as expected. The login form pops up in front of any open windows but doesn't have focus - the folder containing the executable (that I double-clicked to launch) still has focus even when it's behind the login form.</p>
<p>If I comment out all the lines to do with the splash screen, the login form has focus when it appears.</p>
<p>My guess would be that the focus reverts back to the executable folder when the splash screen is hidden but I don't know why the login form doesn't get focus when it launches.</p>
<p>Calling .Focus() on the login form returns null so doesn't work.</p>
<p>Neither form have TopMost or such set on them.</p>
<p>If anyone has any suggestions for what's going on, it would be much appreciated.</p>
<p>Thanks,</p>
<p>K</p>
http://stackoverflow.com/questions/1454664/tips-to-keep-focused-during-code-reviews8Tips to keep focused during code reviewsRobert MacLean2009-09-21T14:00:54Z2009-11-17T06:54:25Z
<p>I often get sent to sites where I need to do a code review of a system I am not involved in, and once reviewed won't be involved in again. I spend time during the usual tool tests and looking for patterns but at some point you just need to read code. </p>
<p>After the first 5000 or so lines it just becomes impossible to focus on the code, especially since it is business tools and thus not the most interesting solutions. So what tips are their for staying focused on the code during a code review?</p>
http://stackoverflow.com/questions/1738526/handling-selected-objects-on-the-gui-in-wpf0Handling selected objects on the GUI in WPFQua2009-11-15T19:33:01Z2009-11-16T07:19:09Z
<p>I've built several user controls in WPF and they all get added to a canvas. I want to add a behaviour that keep tracks of the currently selected usercontrol. A usercontrol should be selected when:</p>
<ol>
<li>The mouse clicks on it;</li>
<li>when it recieve focus;</li>
<li>when either of the two above happens to a subcontrol of the usercontrol.</li>
</ol>
<p>Is there any way to handle this purely by using the focus mechanism of WPF or will I need to take care of this myself with assistance of the focus classes?</p>
<p>I've read up upon the new way of handling focus in WPF, and the problem I'm facing is that the keyboard focus determines what the currently selected object is, but some parts of the my control can't recieve keyboard focus so even though these parts are clicked, the usercontrol doesn't recieve focus.</p>
<p>I'm looking for advice on how to implement this feature and how much I could/should rely on the focus mecanisms. Ultimatively I wouldn't mind if only a single object could be selected, but if it's easily extendable to multi-select then I wouldn't mind this either.</p>
<p>Just to clarify, I know I could build this manually by handling a lot of events and keeping track of states, but I was just hoping an easier approach was available. </p>
http://stackoverflow.com/questions/786334/why-is-is-a-tabhost-stealing-focus-from-a-textview-in-android0Why is is a TabHost stealing focus from a TextView in Android ?e-satis2009-04-24T15:24:19Z2009-11-15T19:00:06Z
<p>I have an application using the following layout :</p>
<p><img src="http://img15.imageshack.us/img15/238/screenshot003xbo.png" alt="alt text" /></p>
<p>When the app start, the focus is on the first TextView, but if you try to type any letter in it, the focus goes directly to the tabs. It seems that I am not the only one <a href="http://groups.google.com/group/android-developers/browse%5Fthread/thread/f3fdd1eb17288886/0d28c51a6b9ffdfe?lnk=gst&q=tab%2Bfocus#0d28c51a6b9ffdfe" rel="nofollow">fighting with this issue</a>, and maybe this is related to the following :</p>
<p><a href="http://groups.google.com/group/android-developers/browse_thread/thread/435791bbd6c550a/8022183887f38f4f?lnk=gst&q=tabs+focus#8022183887f38f4f" rel="nofollow">http://groups.google.com/group/android-developers/browse_thread/thread/435791bbd6c550a/8022183887f38f4f?lnk=gst&q=tabs+focus#8022183887f38f4f</a></p>
<p>Anyway, have you any idea of why that happens ? And of course, any workaround would be appreciated.</p>
<p><hr /></p>
<p>I post the code below to avoid overloading the question :</p>
<p>The XML :</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:padding="5px"
android:orientation="vertical"
android:id="@+id/task_edit_panel"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="50" >
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title"
android:textStyle="bold" />
<EditText android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
<TabHost android:id="@+id/edit_item_tab_host"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@android:id/tabs" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingTop="65px"> <!-- you need that if you don't want the tab content to overflow -->
<LinearLayout
android:id="@+id/edit_item_date_tab"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5px" >
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="date"
android:textStyle="bold" />
</LinearLayout>
<LinearLayout
android:id="@+id/edit_item_geocontext_tab"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5px" >
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="lieu"
android:textStyle="bold" />
</LinearLayout>
<LinearLayout
android:id="@+id/edit_item_text_tab"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5px">
<EditText android:id="@+id/details"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical" />
</LinearLayout>
</FrameLayout>
</TabHost>
</LinearLayout>
<!-- Bottom pannel with "add item" button -->
<LinearLayout
android:padding="5px"
android:orientation="horizontal"
android:layout_weight="1"
android:id="@+id/task_edit_panel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#E7E7E7" >
<!-- Let the height set to fill_parent until we find a better way for the layout -->
<Button android:id="@+id/item_edit_ok_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:text="@string/ok"
style="?android:attr/buttonStyleSmall"
android:layout_weight="1" />
<Button android:id="@+id/item_edit_cancel_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:text="@string/cancel"
style="?android:attr/buttonStyleSmall"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>
</code></pre>
<p>And the Java code :</p>
<pre><code> TabHost tab_host = (TabHost) findViewById(R.id.edit_item_tab_host);
// don't forget this setup before adding tabs from a tabhost using a xml view or you'll get an nullpointer exception
tab_host.setup();
TabSpec ts1 = tab_host.newTabSpec("TAB_DATE");
ts1.setIndicator(getString(R.string.when), getResources().getDrawable(R.drawable.ic_dialog_time));
ts1.setContent(R.id.edit_item_date_tab);
tab_host.addTab(ts1);
TabSpec ts2 = tab_host.newTabSpec("TAB_GEO");
ts2.setIndicator(getString(R.string.where), getResources().getDrawable(R.drawable.ic_dialog_map));
ts2.setContent(R.id.edit_item_geocontext_tab);
tab_host.addTab(ts2);
TabSpec ts3 = tab_host.newTabSpec("TAB_TEXT");
ts3.setIndicator(getString(R.string.what), getResources().getDrawable(R.drawable.ic_menu_edit));
ts3.setContent(R.id.edit_item_text_tab);
tab_host.addTab(ts3);
tab_host.setCurrentTab(0);
</code></pre>
http://stackoverflow.com/questions/813356/determine-where-activation-is-going-when-a-form-is-deactivated4Determine Where Activation Is Going When A Form Is DeactivatedZach Johnson2009-05-01T21:20:09Z2009-11-14T19:27:03Z
<p>Does anyone know of a way to determine which window is going to receive focus when a form is deactivated?</p>
http://stackoverflow.com/questions/1728369/re-focus-browser-in-javascript-when-dragging-file-from-desktop0Re-Focus Browser in Javascript when Dragging File from Desktopviatropos2009-11-13T10:22:45Z2009-11-13T11:43:18Z
<p>Hey there,</p>
<p>When I drag a file from the desktop to the browser, and I keep the browser in focus (Safari or FireFox for now), I know everything works right (dragging, having the app respond, etc.). I am also able to un-focus the browser, by clicking on my desktop for example (keeping the browser in view), and when I drag the file to the browser, I am still able to process the drag events, which is cool.</p>
<p>I'm just wondering how I can refocus the browser when:</p>
<p>1) It's not in focus, and
2) when it's not in focus, I drag something over it.</p>
<p>I can do something like <code>window.focus()</code>, but that doesn't bring the whole browser back into focus out of the things on my desktop. What line of js code do I need to make the browser refocus, like how when you drag a folder to an unfocused/blurred Finder window on the Mac and it pops into focus after a second or two?</p>
<p>Then it's onto processing the dragged info...</p>
http://stackoverflow.com/questions/1726464/when-programming-should-you-focus-on-one-thing-at-a-time-even-if-you-get-stuck2when programming, should you focus on one thing at a time, even if you get stuck on one step ? [closed]aoghq2009-11-13T00:58:07Z2009-11-13T01:16:41Z
<p>i find myself often falling into a "mental block" where i can't figure out how to find an approach to a problem. i think about it for a few days until it clicks.</p>
<p>is this bad? if you get stuck on a problem, should you move on to the other ones and continue coding ?</p>
<p>its like a final exam, you have many questions to answer but you get stuck on one, and you waste time....</p>
http://stackoverflow.com/questions/1721458/focusable-panel-in-wpf1Focusable Panel in WPFMart2009-11-12T11:03:22Z2009-11-12T13:48:23Z
<p>I need to make a Panel focusable in WPF, so that it captures keyboard events just as any other focusable control:</p>
<ul>
<li>The user clicks inside the Panel to give it focus</li>
<li>any <code>KeyDown</code> or <code>KeyUp</code> event is raised at panel level</li>
<li>if another focusable element outside the panel is clicked, the panel loses focus</li>
</ul>
<p>I experimented <code>FocusManager.IsFocusScope="True"</code> on the Panel and <code>myPanel.Focus()</code> returns <code>true</code> but the Panel KeyUp event handler still isn't called.</p>
<p>Am I missing something?</p>
http://stackoverflow.com/questions/1095291/clicking-on-popup-outside-bounds-of-taskpane-loses-keyboard-focus0Clicking on Popup outside bounds of TaskPane loses keyboard focusJoshua Tacoma2009-07-07T23:01:23Z2009-11-12T12:26:33Z
<p>I'm developing a Microsoft Word TaskPane containing a WPF ElementHost. The hosted WPF uses a Popup that is intended to behave as a ComboBox's does. I believe you can reproduce my problem like this:</p>
<pre><code>popup.IsOpen = true;
popup.StaysOpen = false;
Mouse.Capture(ancestor_of_popup, CaptureMode.SubTree);
</code></pre>
<p>When a region of the Popup lies outside the bounds of the TaskPane, click the mouse in that region. The entire TaskPane loses keyboard focus to Word's main window, but retains mouse capture. At this point, you can use the Popup with a mouse while typing on the keyboard edits your document!</p>
<p>If the TaskPane loses keyboard focus then the Popup should close, but then any control in the region of a Popup that lies outside the bounds of the TaskPane becomes unusable. Any ideas?</p>