1
vote
0answers
18 views

Move caret after a MoveFocus() call

I am attempting to manually control traversal of a number of TextBoxes in a (WPF) Window. I am successfully using (this is within a PreviewKeyDown handler): if (<logic>) { ...
1
vote
1answer
58 views

Focused property is always true in Windows Forms control

I am currently working on a Windows Forms control library, and as part of this, I am writing a custom button control. It's very similar to the standard Button control, but it does have some ...
0
votes
1answer
113 views

WPF Prevent button from taking focus from any other control

I have an "On screen keypad" with some up/down/left/right/select buttons. The select button is effectively a click and the arrow keys fire the associated up/down/left/right key. The problem is that ...
1
vote
1answer
112 views

How can I keep all the focused forms?

I've an application that use two forms: Form1 (main) and Form2 (secondary). I show the Form2 with the following code: Form2 frm = new Form2(); frm.TopMost = true; frm.Show(); When the Form2 is ...
0
votes
1answer
83 views

Programmatic focussing of parent Window from a Popup

I am currently having an issue with a WPF Popup where an action on said popup wants to return the Focus to the Main window of the application. Usually, when you click somewhere on the window the ...
0
votes
1answer
97 views

Get focus on third party application and return

I'm writing in C#. I have a process that lunches a third party application embedded within my program. I also have a RichTextBox in which I write text and then it shown in the embedded application ...
1
vote
2answers
106 views

How to focus on last activated program?

If you are making windows form application and you have "Notepad" and "web browser" open ,How to Give Focus to the last one that had focus before your application got the focus?
0
votes
2answers
95 views

WPF application with several windows including a non active: focus issue

I have a .Net 4 application with two windows in WPF 4: One uses the WS_EX_NOACTIVATE style to prevent gaining focus. The other is a basic Window. The "no-activate" window behavior is appropriate ...
1
vote
2answers
121 views

Detecting which control is active

I have a setup with a textbox and a listbox in which I want the listbox to be visible only when either the textbox or the listbox is focused. To begin with the listbox will be invisible. Then as the ...
0
votes
1answer
231 views

TextBox.Focus() only works if I have a MessageBox.Show() after it?

Ok so obviously there's more to it, but here's the basics. This is seemingly such a simple thing but it's not working. I have a Label. I have a TextBox. The ZIndex of the Label = "1" The ZIndex of ...
0
votes
0answers
657 views

C#/VB.NET/Windows Forms: Highlight selected ListViewItems in a ListView Control even it has no focus

To highlight any selected ListViewItems in an ListView Control, even the ListBox has no focus, I used a own ListView Control, derived from System.Windows.Forms.ListView. The problem is, the ...
0
votes
1answer
400 views

“Ambiguous match found” when using FocusManager.FocusedElement

I don't think I've ever had a compile-time error of Ambiguous match found - I associate it with runtime exceptions. When I add a FocusManager.FocusedElement setter in my XAML I get the build error, ...
0
votes
1answer
143 views

How to retrieve the CaretPosition from the WPF RichTextBox during GotFocus?

I have a TextBox and a RichTextBox with the same text. Everytime I click inside the RichTextBox, the TextBox should be focused with same caret position. My first idea was this: void ...
0
votes
0answers
55 views

Focus events not get fired

I can't get my AvalonDock components (DockablePane and DockableContent) with version 1.3 to reach their focus related EventHandlers. When I select a DockableContent with a mouse click (Its title ...
5
votes
1answer
169 views

Is there a way to bind to Keyboard.FocusedElement?

I would like to have a property that is always bound to the currently focused control. I have seen two ways to get the currently focused control. One is using Keyboard.FocusedElement. The second is ...
0
votes
2answers
700 views

How to set focus on last row of grid

I need to set focus on the last row of the grid after a grid row updation takes place. Can anyone help me out on this? Below is my gridview, <asp:GridView ID="grdViewForComment" runat="server" ...
0
votes
3answers
493 views

Select All Content of TextBox on GotFocus Event

I am working on WPF application, in which I have some text boxes which is displaying dollar amount. I just want to select all content inside my text box whenever focus will come on text box. To ...
1
vote
2answers
367 views

Stop ShowDialog from removing focus from the parent form

I'm working on a multithreaded TDI UI (using C1 DockingTabs if you are interested). So far, I've managed to get each window to open in a separate thread and to use the SetParent Win32 API to put it ...
3
votes
1answer
967 views

Set focus on winform after start

I found a few topics about this but none of these could help me with my problem, i want to set the focus on a new created winform window after it started. I'm starting the form in a own new thread ...
-1
votes
1answer
329 views

VB form validation issue

I am doing form validation in VB, I validate the text field data by using txtName_LostFocus function, and on wrong input I used txtName.Focus(). It works well for me. But problem is that as for as, ...
0
votes
1answer
346 views

give focus to datagrid after button is clicked

I have a button and a datagrid. They are located on the same window. I need to give focus to selected row after the button is clicked. Seems to be not as straightforward as I've thought. So I've got ...
1
vote
2answers
466 views

Avoid switching focus while using UI Automation

Just out of curiosity I decided to write a simple tool with the functionality similar to UI Spy. Basically it displays a tree of controls and allows seeing each control's property. Now I've started ...
0
votes
1answer
348 views

Focus on KeyDown in VB.NET?

I have seen similar questions which attempt to solve this issue, but none seem to work for me so far... Basically, for my first VB project, I am creating a virtual keyboard where a sound is played ...
4
votes
5answers
2k views

How can I enforce a single instance of my application?

How can I ensure a single instance of my application and to set the focus to it when attempting to open a second instance? I tried: public partial class Form1 : Form { [DllImport("USER32.DLL", ...
1
vote
1answer
109 views

Property Grid Decimal Focus (DenisVuyka version)

I am using WPF Property Grid by Denis Vuyka https://github.com/DenisVuyka/WPG I am having an issue where if i use Validation TextBox, and a number range, when i clear out the text box, and want to ...
0
votes
1answer
193 views

How to prevent menu (ContextMenuStrip) to steal focus from my TextBox control?

I am trying to replicate an intellisense like feature where you have a textbox and a menu that's shown below it. I know intellisense doesn't use ContextMenuStrip, but my version has to have categories ...
1
vote
4answers
1k views

Webbrowser steals focus

I'm using webbrowser control in my winforms app (c#). And when it is doing automation things, I'm losing focus control from the window I was working with. Webbrowsers' form doesn't show up also, I ...
0
votes
2answers
4k views

How to force the form focus?

How can I force the focus of an form? .Focus() is not working for me. private void button1_Click(object sender, EventArgs e) { var form = new loginForm(); if (Application.OpenForms[form.Name] ...
0
votes
2answers
153 views

RepeatButtons not loosing focus and remains highlighted forever

I ma working on my Up Down control and it works fine, but today I noticed a strange problem with repeat buttons in control. Once I click on the +/- repeat buttons they get highlighted with blue ...
0
votes
2answers
1k views

Focus issue with Wpf DataGrid

I am using WPFToolKit DataGrid to display data; In my use case user clicks on a cell and enters a value (I trap the event and set the focus to the TextBox) Presses Enter Value is committed Focus ...
1
vote
1answer
397 views

SplashScreen.Close() steals focus of MainWindow

When the SplashScreen closes (either manually or by AutoClose), it steals the focus of the MainWindow during the fade-out animation. This results in the caption of the main window switching from ...
0
votes
1answer
28 views

Focusing a window for scrolling

I have some experience in Python and Java, but I dont really know the .NET framework and how to interact with Windows. What I want to do is a little program/script (maybe I need a DLL?) that when I ...
0
votes
1answer
249 views

How to control tabbing order without disabling all focus for controls in this scenario

I got a control that looks like this , it has several text boxes [1 ][2 ][3 ][4 ] Now in my app those controls are forming a somekind of a matrix like [1 ][2 ][3 ][4 ] [1 ][2 ][3 ][4 ] [1 ][2 ][3 ...
4
votes
2answers
526 views

WPF focus management in .Net 4.0

I have an application in WPF that is to be used exclusively by the keyboard, so we are really picky about focus behavior. So, we get a PreviewLostKeyboardFocus on a textbox. Under certain ...
3
votes
2answers
2k views

Focus problems in datagrid

I am working on an accounting application, My users don't want to touch mouse at all as it will decrease their speed...So focusing is very important in the application. I am using a datagrid to ...
3
votes
1answer
944 views

How Can I change the way that focus looks like in WPF?

The focus visual hint that wpf provides on Windows 7 is a dashed line, as such this: Now, how can I change the way it looks? How can I control its appearence? Thanks!
0
votes
1answer
2k views

auto move focus to next cell datagridview

I have a datagridview(DGV) in whic i want the first cell of the row to be serial number, so i put up this code. Private Sub dgvStudents_RowEnter(ByVal sender As System.Object, ByVal e As ...
4
votes
5answers
1k views

How to prevent WinForms from losing focus?

How to prevent my "About-Form" (no input-boxes, OK-button only) from losing focus, to force the user to click "OK"? I tried Validation and ErrorProvider. I tried also to delegate Show, Activate and ...
0
votes
1answer
258 views

Keyboard.FocusedElement is null, what are the possible causes?

While keyboard navigating a WPF app, in one step, between one control and another, the Keyboard.FocusedElement is null. If there is no reference to this property in the code, which methods can cause ...
1
vote
1answer
664 views

How to find out which element has focus when debugging WPF?

I'm navigating with the keyboard, and I can't find visually which element has the focus. While debugging I managed to break the execution in a method inside the Window but I don't know which property ...
3
votes
1answer
646 views

Focus on TextBox is triggering PageLoad using C# .net

I have a function that set focus to the next field via JS on the form when press enter: function pressEnter(obj, e) { var key = e.keyCode ? e.keyCode : e.which; if (key === 13) { var ...
10
votes
2answers
4k views

TabIndex vs. KeyboardNavigation.TabIndex in WPF

What is the difference between TabIndex and KeyboardNavigation.TabIndex in WPF? When to use each?
0
votes
1answer
276 views

How to set a focus on a View with MVVM light

Im using Silverlight 4 with MVVM light. Let's say I have a MainView with two different data grids. if I select a row (SelectedItem) from any data grid, I can open a lightbox or a different MainView2. ...
11
votes
5answers
5k views

How do I prevent WPF buttons from remaining highlighted after being clicked?

When a standard WPF button is clicked, it gets highlighted in blue (probably using the blue color from whatever Windows theme is set), and it stays highlighted until you interact with any other ...
4
votes
6answers
3k views

Could Label get a focus?

I have a one question on my university's test about C#. Could label get a focus? As I can see on MSDN site, all Controls can get a focus, but some of them aren't selectable. So it's seems to me that ...
1
vote
2answers
4k views

C# detecting key event in all windows

Hey, i have some problem with key event handler. This is source: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using ...
1
vote
1answer
3k views

How to set focus to an object(textbox) in main form from another form (C#)

I tried everything I know. The trouble must be that my textbox is in a groupbox. I have a Mainform from which I move to another form. When I return to Mainform, I want a particular object to be ...
1
vote
1answer
488 views

Drawing a focus rectangle only when control receives focus via keyboard

I want to style a TabItem's "focus rectangle". I've learned I can do this using FocusVisualStyle. The problem is that FocusVisualStyle creates a sepearate visual tree for an adorner that is drawn on ...
17
votes
4answers
12k views

WPF-MVVM: Setting UI control focus from ViewModel

What is a good practice of setting control focus in MVVM architecture. The way I envision it, is with a property on the ViewModel that would trigger a focus change when needed. And than have the UI ...
4
votes
1answer
853 views

WPF Toolbar does not pass focus to the next control on tab-key

I have created a simple WPF application with a TextBox and a Toolbar containing two buttons. When I click the textbox and press the tab-key, input focus is moved to the first toolbar button. Pressing ...

1 2