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>) { ...
3
votes
1answer
41 views

ALT-TAB always activates main window in WPF app with multiple owned windows

On Windows 7, .NET 4.0 I have a problem that can be reproduced by copying the following code into a blank WPF application generated by Visual Studio: public MainWindow() { ...
0
votes
1answer
29 views

Textbox focus does not work when focus by mouseclick wpf

When I click on text box by mouse then focus does not display. and when I goes to textbox by keyboard then focus displayed. I am trying below code. So please can any one suggest me how I solve this ...
0
votes
1answer
26 views

How to show programmatically FocusVisualStyle?

Afters attemps I could tell that the FocusVisualStyle is only activated by the keyboard (tab and arrows keys). Try to make the FocusVisualStyle to be applied after the component is loaded, it is ...
0
votes
0answers
28 views

WPF DataGrid.SelectedItem is null when tab in using keyboard

DataGrid is bound to ViewModel.CurrentEntry.EntryLines property and its SelectedItem is bound to ViewModel.CurrentEntryLine property. <DataGrid x:Name="dgdDetails" ...
1
vote
1answer
69 views

Set focus to 1st textbox in items control

Let's say I have an items control that is bound to a list of items on the VM. Inside the datatemplate is a textbox. How would I set focus to the first textbox in either XAML or the VM? Thanks in ...
0
votes
0answers
52 views

Keeping Focus/SelectedItem after DataGrid ItemsSource change

ive been working on this for a few days, but cant seem to come up with a solution i have code on a timer that refreshes the DataGrid every few seconds i tried many refresh options, but in the end ...
0
votes
0answers
65 views

WPF Parent Element Lost Focus

I am developing a WPF application. In one of my pages I have a DockPanel with 3 ComboBoxes within it. These 3 ComboBoxes are dependent on each other. So, I have a binding group on the DockPanel and a ...
0
votes
1answer
41 views

WPF ComboBox Undo Exception on Ctrl+Z (with Focus on SelectionChanged), Why?

Well, someone can tell me why this exception occurs in these conditions? Test Window: <Window x:Class="MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
1answer
125 views

WPF Listview does not scroll (with mouse wheel) when Application not in focus

I have a WPF app (written in C#) which has a Listview control which scrolls perfectly with the mouse wheel when the app is in focus. However when the app is not in focus, even when the mouse pointer ...
0
votes
0answers
31 views

Focus method of Run (in a FlowDocument) is not working

Code: TextPointer navigator = flowDocViewer.Document.ContentStart; // While we are not at end of document while (navigator.CompareTo(flowDocViewer.Document.ContentEnd) < 0) { // Get text ...
1
vote
1answer
119 views

WPF Datagrid Items Refresh lose focus

Refreshing my datagrid when my observableCollection gets updated in the viewmodel have been a nightmare. After I discover the DataGrid won't respond to the events raised by the ObservableCollection I ...
0
votes
1answer
28 views

UserControl, cursor at tabnavigation

In my window there are two textbox and my usercontrol. Once the cursor is TextBox1. When I click Tab cursor is in my UserControl, but cursor remains stable on TextBox(like | without blink). When I ...
1
vote
2answers
108 views

Focus Textbox using only XAML

I'm trying to set the keyboard focus to a textbox that is included in a stackpanel collapsed by default. When the stackpanel becomes visible i want the textbox to become, by default, focused. I've ...
-1
votes
1answer
46 views

How to set focus on a TextBox from a ComboBox SelectionChanged Event in the same TreeViewItem

So the DataTemplate for the TreeViewItem: <DataTemplate> <StackPanel Orientation="Horizontal"> <ComboBox Name="CB" /> <TextBox Name="TB" /> ...
0
votes
1answer
32 views

WPF - Wrong focus when multiple windows are shown

we are experiencing a strange behavior regarding focus between multiple windows. Our scenario looks like this: "Window A" opens child "Window B" using the Show method (without precifying the owner ...
0
votes
0answers
49 views

Does mouse click brings keyboard focus to focusable control by default?

This question can seem quite odd but from all my experience I've got used to setting keyboard focus to the focusable element just by clicking it with the mouse. But UserControl with the properties ...
1
vote
2answers
107 views

How to move focus in WPF?

I wonder if there is anyway to change focus from the current control and move it to other control in WPF on TabIndex assigned controls. Example I have controls with TabIndex 1 to 5, is there a way to ...
0
votes
1answer
56 views

How to set focus to UserControl (make it selectable)?

I need to set focus to UserControl itself, not its child. Otherwise I cannot implement insertion from the buffer. :( Setting Focusable=True doesn't help. Google and SO tells only how to set focus to ...
0
votes
0answers
23 views

Focus on a new loaded view via keyboard set focus on an unfocusable element

I have a WPF application where views rotate through as the user's navigate through the steps, as with a wizard. When a user clicks on next, the next view loads and focus is correct. However, when a ...
0
votes
1answer
41 views

Deriving UIElement - how to receive focus

I created a class based on UIElement and my intention is to render it myself overriding OnRender. Rendering works fine. Next I want to implement focus management and continue with other aspects of ...
1
vote
0answers
193 views

WPF ListView with DataTemplateSelector: PropertyChanged always sets focus to ListView

i'm really frustrated with this problem, but maybe it is really trivial and i just can't see where the problem is. The situation is the following: I have a ListView that is bound to an ItemsSource. ...
2
votes
2answers
140 views

How to bring Inline from a RichTextBox Child into View

How can i focus a Inline in a RichTextBox? I Create a FlowDocument from a Text-File and load it in my richTextBox1 and mark one Inline after an other accordingly to a Button_click (be recreating the ...
0
votes
1answer
82 views

WPF TextBox focus “sticking” after disabling and enabling

I have a TextBox in a Grid that has InputBindings such that when I hit return, a search is performed in a background thread. The IsEnabled property of the TextBox is bound to a bool on my view model ...
2
votes
1answer
144 views

Get focused MenuItem in submenu WPF

I'm writing an application with menu containing submenus. Also I have a StatusBar where I want to display information about focused MenuItem when user navigates in menu with keyboard. I tried to ...
1
vote
1answer
281 views

Focus on TextBox after ListView 'SelectionChanged' Event

I wish to set focus on a TextBox after an item is selected from a ListView control, but I can't seem to get it to focus from within my 'SelectionChanged' event method FocusOnTextBox(). For some ...
0
votes
0answers
244 views

WinRT Focusing a UserControl

So I have a UserControl that is used to play a video. This control is displayed as an overlay of other controls. The controls behind the UC with the video player have a Back button that allows the ...
0
votes
1answer
145 views

WPF DataGrid.selectedIndex don't have the full focus on

I would like to select automaticaaly my first Item in my data grid ( when my form loaded ) Here is my code myDataGridEvtCode.Focus(); myDataGridEvtCode.SelectedIndex = 0; My problem is that if i ...
0
votes
1answer
112 views

wpf datagrid focus on the selectemItem

I programmatically selectItem in a datagrid. The problem is though that i have to manually scroll down to selectItem. I need to do this automatically. so far I have tried many thing and nothing works ...
0
votes
1answer
233 views

TreeView Style FullRowSelect and stay selected when focus lost

At a TreeView, I have the following Resources to keep the item selected when Focus is lost. <TreeView.Resources> <Style TargetType="{x:Type TreeViewItem}"> ...
0
votes
1answer
111 views

WPF Window GotFocus / LostFocus

I have a simple task to accomplish, or at least in appearance ... I'd like to handle the fact that a window is currently the current selected window in the Windows environment or not. I thought I ...
0
votes
1answer
97 views

WPF Catch Focus Change of Children Controls

Is there a way for a UserControl to catch focus change on any of its children controls? I've got a TabControl which has a UserControl on each tab. I am trying to maintain focus on control items when ...
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 ...
0
votes
1answer
102 views

Having trouble figuring out why a control is losing focus

I've created a custom grid control with editable text blocks in each cell. The edit is triggered by a double click like so: void TextBlock_MouseDown(object sender, ...
0
votes
1answer
180 views

Focusing with FocusManager, ContentControl and DataTemplate

I'm trying to get (keyboard) focus work properly with an application of the following structure: ItemsControl DataTemplate for Item ContentControl DataTemplate for Content (multiple, ...
-1
votes
1answer
40 views

Focus not set on menu item

I have a menu on my view. When focus on menu that time press F1. This F1 opens a browser page. Now close the browser. Focus not show on menu after closing the browser. Focus should still remain ...
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
121 views

Strange focus issue with UserControl hosted in ElementHost

I have UserControl which is hoseted in ElementHost. It contains DataGrid When user presses enter or double clicks the row new window is shown (modalless), and when that window is closed window with ...
1
vote
0answers
35 views

Why does not PredictFocus() support FocusNavigationDirection.Next?

What are the reasons for PredictFocus() does not support FocusNavigationDirection.Next ? And how can I get the element to recieve focus when TAB is hit?
0
votes
1answer
225 views

Wpf Popup loses focus but stays opened

I have the following Popup: <Popup Name="popupBind" AllowsTransparency="True" Helpers:FocusHelper.IsFocused="{Binding RelativeSource={RelativeSource Self}, ...
0
votes
0answers
124 views

WPF cannot trigger MouseEnter after opening drop-down menu

I have an issue with WPF controls. I have a window with a header toolbar of icons and a sidebar of icons. When this toolbar is resized, the overflow is stored in a dropdown. When I open this dropdown ...
0
votes
1answer
218 views

WPF DataGridCell LostFocus event stops bubbling at DataGridRow

I can't quite understand what's going on with the following bit of code. It's a relatively simple wpf datagrid which displays an ObservableCollection of objects. If I select a row, and press the ...
0
votes
1answer
98 views

How to accept focus C# WPF UserControl

I'm trying to create a date edit UserControl, but using TextBlock rather than TextBox because I want a single input context rather than manage six possible foci. How do I accept focus? I tried ...
0
votes
1answer
173 views

Checkbox loose Focus with FocusManager.IsFocusScope=“True”

i have a strange behavior with my checkbox and focus/taborder. first some "working" code: <Grid> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition ...
0
votes
1answer
158 views

How to have the selected item from the DropDownList in ComboBox show focus when hovering over it and not just the text

I have a WPF application that uses a ComboBox with items populated from the server. The control works well in it's current setup but has a small issue that I would like to resolve. When I click on the ...
0
votes
1answer
347 views

Activate WPF Window without losing focus on previous application/window

I have a WPF window in application which I Activate on some specific scenarios by calling MainView.Activate(); and MainView.BringIntoView(); method. it also sets focus on this 'MainView' window. But ...
0
votes
0answers
113 views

Focus issue when using WindowsFormsHost within WPF window

My application includes a ribbon with a contextual tab, this tab needs focus in order to be activated. When i open a WPF floating window which hosts a WindowsFormsHost inside of it, my contextual tab ...
0
votes
0answers
78 views

A windowed fullscreen game, WPF and how to handle focus in controls

sorry if the title is confusing - I couldn't just find one that really fits my problem without sounding even more stupid as it already does. What I've got I've got a windowed fullscreen application ...
1
vote
2answers
82 views

WPF - how to focus an usercontrol from code behind

I have an user control with Focusable=true and IsTabStop=true. I can focus it using Tab key. but I need to focus it from code. I tried uc.Focus() and Keyboard.Focus(uc) but it doesn't work.
3
votes
1answer
386 views

Keyboard.Focus does not work on text box in WPF

I am banging my head on what looks like such a simple problem to fix in wpf but i have yet to discover why i can't get my app to behave according to my plan. I have a small search box that pops-up ...

1 2 3 4 5 9