Tagged Questions
The lostfocus tag has no wiki summary.
4
votes
2answers
1k views
How do you solve this LostFocus/LostKeyboardFocus issue?
Ok, I have a control that has an IsEditing property which for argument's sake has a default template that is normally a text block, but when IsEditing is true, it swaps in a textbox for in-place ...
3
votes
2answers
406 views
Which event should be used to update a Model from TextBox (LostFocus, LostKeyboardFocus, etc) in WPF? How to set precedence of events in WPF?
I have an application in which there are lot of TextBoxes and some Buttons like Save, SaveAs,etc.
When the user edits a TextBox, I have to check the DataBase for some range, validate the range and ...
3
votes
0answers
410 views
LostFocus Binding doesn't work on template
I have a TabControl that is data bound to a list. (Two data items in the list)
The TabControl has a DataTemplate which contains two TextBox controls bound to two string properties on my data class.
...
2
votes
1answer
522 views
How do I make my WPF Context Menu go away when the user clicks outside the menu?
First, the standard info:
VS2010 Ultimate
Win7 Ultimate x64
WPF app
The WPF context menu:
<ContextMenu x:Key="RightClickSystemTray" Placement="MousePoint">
<MenuItem ...
2
votes
2answers
471 views
Why is there an infinite loop on my LostFocus Event
I'm a beginner with C# and I'm developing a basic application.
I want to check if the value of a textbox is a number with the following code :
private void check_value(object sender)
{
...
2
votes
2answers
367 views
WPF TextBox lostfocus as attached property
I have a Grid with many TextBoxes and I want to call NotifyPropertyChanged() method to update some other controls everytime one of these TextBox-es changed the value = lost the focus (I don't want ...
1
vote
2answers
180 views
WPF TabItem lost focus event
I have tabItems with TextBox on their headers. I use LostFocus and MouseDoubleClick events to set the text to the TextBox.
<TabControl>
<TabItem Width="50">
...
1
vote
2answers
127 views
TextBox and TextAlignment after lost focus when text is longer than TextBox width
I have the following problem: I have a TextBox in WPF application. When I type in a text that is very long (more characters than what can display in the textbox field)
and than move away from that ...
1
vote
1answer
233 views
ComboBox doesn't raise keyboard and mouse events as expected
I use Silverlight 4.0 and have got problems with ComboBox control. I want to implement a popup menu which will show and hide itself without clicking mouse. It should show when I place cursor on its ...
1
vote
2answers
370 views
C# Lost Focus without using control event
There is a way to get who lost his focus in a c# form without using the LostFocus event each component?
[edit]
I need for a On Screen Keyboard.
I need to store last focussed control to fire ...
1
vote
2answers
3k views
Intercept Silverlight DatePicker's convert from text to DateTime
I want DatePicker to convert the following text pieces to DateTime (shown in international format) so my customers can write a date in DatePicker textbox faster so it is not just DateTime.Parse I will ...
1
vote
2answers
955 views
control lost focus event when using keyboard shortcut
For both .NET Winforms and Windows Presentation Foundation, if I have a text box that the user has just entered text into, and a button, if the user clicks the button the "LostFocus" event fires ...
0
votes
0answers
36 views
PopUp StaysOpen when control goes
In a Usercontrol Grid(Grid1) I have a textBox, two Buttons (Search and Save Buttons) and Two Popups(Popup1 and Popup2). Inside Popup2 there is a textBox and one button(Search). I wanted to hide the ...
0
votes
1answer
71 views
How to hide ckeditor when we click outside of the editor?
Here is my code:
<div id="showReplyDiv">
<form id="test">
<div>
<textarea id="articleEditor" name="articleVO.articleC"></textarea>
<script ...
0
votes
1answer
81 views
wpf toolkit integer updown does not retain value on lostfocus
I have an integer updown wpf toolkit control...I am able to change the values using the arrow keys ...and able to type it explicitly. But after changing the value, if I move focus away...the value ...
0
votes
1answer
71 views
Handling Focus with Custom Controls in VB.net
I have a custom control I'm creating. When I click on it, it draws a dotted border and puts some nubs on it for resizing. This all works perfectly. Now I want it so when I click off of it, it ...
0
votes
1answer
140 views
Textbox in listview - update source and move focus on tab not working at same time
I have a listview. I have set following int that :-
<ListView KeyboardNavigation.TabNavigation="Local" SelectionMode="Extended">
<ListView.ItemContainerStyle>
<Style>
...
0
votes
1answer
42 views
is there a way to identify the last control that was active in a .net windows forms code-behind?
I have a form where there is group of radio controls and some with textbox.
If the cursor is on textbox and i try switching the cursor to a different radio button, i should be able to identify the ...
0
votes
1answer
237 views
LostFocus handling issue
I want to handle LostFocus event of TextBox to perform some actions. But I'm also wouldn't want to perform that actions if TextBox lost it focus because special Button (which opens OpenFileDialog) was ...
0
votes
3answers
303 views
ASP.NET VB.NET - Winforms to Web - implementing LostFocus listview control equivalent for web
Background: I have a winForm app that registers a user in the database based on the information provided, auto-generates a random password and username, and e-mails the user a link to take an ...
0
votes
0answers
221 views
UpdateSourceTrigger=LostFocus Toolbar
Hi
In my MVVM app I have a View which contains few textboxes, textboxes are binded to object
<TextBox Text="{Binding Path=EditedObject.FirstName, UpdateSourceTrigger=LostFocus, ...
0
votes
1answer
629 views
ASP.NET :: Can a textbox control's onblur/lostFocus event trigger a server-side event?
I am trying to attach a server-side event to lookup the city/state for the user-entered zipcode in a field like the one below.
<asp:TextBox ID="TextZipcode" runat="server" CssClass="inputtext" ...