1
vote
1answer
15 views
in WinForms can control focus change “automatically”? if yes, can I somehow distinguish this from user triggered focus change?
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 …
0
votes
1answer
13 views
Preventing WPF TreeView’s GotFocus event from bubbling up the tree
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 …
0
votes
1answer
19 views
Move focus from one Edit text box to another
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.
input1 = (EditText) …
0
votes
1answer
13 views
ASP.NET checkbox changes focus?
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.
Nowhere in the code am I specifying a change in focus, either in …
1
vote
0answers
35 views
WPF Popup focus in data grid
Hello,
I'm creating a custom UserControl to be used inside a DataGrid editing template.
It looks like this:
<UserControl
x:Class="HR.Controls.UserPicker"
…
0
votes
3answers
44 views
jQuery blur with an exception
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 …
0
votes
1answer
42 views
gtk: how to hide a window when the application loses focus
Hi,
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.
So, I have a main window, and another …
0
votes
2answers
22 views
How to set the keyboardfocus to a textbox inside a UserControl programmatically?
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:
private void Button_Click(object …
2
votes
8answers
87 views
when programming, should you focus on one thing at a time, even if you get stuck on one step ? [closed]
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.
is this bad? if you get stuck on a …
0
votes
2answers
35 views
Giving a child window focus in IE8
I'm trying to launch a popup window from a Javascript function and ensure it has focus using the following call:
window.open(popupUrl, popupName, "...").focus();
It works in every other browser, but …
0
votes
1answer
20 views
Auto-complete in WPF - Making a popup unfocusable
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.
I want to …
8
votes
18answers
482 views
Tips to keep focused during code reviews
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 …
1
vote
2answers
36 views
Focusable Panel in WPF
I need to make a Panel focusable in WPF, so that it captures keyboard events just as any other focusable control:
The user clicks inside the Panel to give it focus
any KeyDown or KeyUp event is …
0
votes
3answers
39 views
Handling selected objects on the GUI in WPF
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:
…
0
votes
1answer
23 views
Re-Focus Browser in Javascript when Dragging File from Desktop
Hey there,
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 …
