Click here to Skip to main content
15,893,814 members
Home / Discussions / WPF
   

WPF

 
QuestionCompatible with VS 2005 Pin
avi_dadi20024-Jan-09 19:15
avi_dadi20024-Jan-09 19:15 
AnswerRe: Compatible with VS 2005 Pin
Aman Bhullar6-Jan-09 5:25
Aman Bhullar6-Jan-09 5:25 
AnswerRe: Compatible with VS 2005 Pin
Mohammad Dayyan8-Jan-09 10:45
Mohammad Dayyan8-Jan-09 10:45 
AnswerRe: Compatible with VS 2005 Pin
CrazyCoder269-Jan-09 20:32
CrazyCoder269-Jan-09 20:32 
QuestionFocusing problem ? Pin
Mohammad Dayyan4-Jan-09 3:26
Mohammad Dayyan4-Jan-09 3:26 
AnswerRe: Focusing problem ? Pin
Mark Salsbery4-Jan-09 6:30
Mark Salsbery4-Jan-09 6:30 
GeneralRe: Focusing problem ? Pin
Mohammad Dayyan4-Jan-09 6:52
Mohammad Dayyan4-Jan-09 6:52 
GeneralRe: Focusing problem ? Pin
Mark Salsbery4-Jan-09 9:32
Mark Salsbery4-Jan-09 9:32 
Your Rectangle has no size so I'm not sure how you're able to click on it.

I gave the Recangle a size...
<Rectangle x:Name="hour01Rect" Fill="#FFF5F5F5" Stroke="#FF99AABD" HorizontalAlignment="Stretch" Margin="0,0,30,0" Focusable="False" Height="23" Width="162" MouseLeftButtonDown="rect_MouseLeftButtonDown" />
<TextBox FlowDirection="RightToLeft" Language="fa-ir" Text="نمونه" FontSize="12" Margin="20,15,50,15"  Visibility="Hidden" x:Name="hour01TextBox" GotFocus="hour01TextBox_GotFocus" LostFocus="textBox_LostFocus" />

and simplified your code behind
private void hour01TextBox_GotFocus(object sender, RoutedEventArgs e)
{
}

private void textBox_LostFocus(object sender, RoutedEventArgs e)
{
    MessageBox.Show("LostFocus");
}

private void rect_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
    <code>//Rectangle senderRectangle = sender as Rectangle;
    //string name = Regex.Replace(senderRectangle.Name, @"Rect", "", RegexOptions.IgnoreCase) + "TextBox";
    //TextBox destinationTextBox = this.FindName(name) as TextBox;</code>
    <code>hour01TextBox</code>.Visibility = Visibility.Visible;
    <code>hour01TextBox</code>.Focus();
    <code>hour01TextBox</code>.SelectAll();
}

...and it works fine for me.

Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

GeneralRe: Focusing problem ? Pin
Mohammad Dayyan4-Jan-09 21:44
Mohammad Dayyan4-Jan-09 21:44 
QuestionWPF save button Pin
siten03083-Jan-09 12:23
siten03083-Jan-09 12:23 
AnswerRe: WPF save button Pin
Mark Salsbery3-Jan-09 15:09
Mark Salsbery3-Jan-09 15:09 
GeneralRe: WPF save button Pin
siten03083-Jan-09 18:42
siten03083-Jan-09 18:42 
GeneralRe: WPF save button Pin
Mark Salsbery3-Jan-09 20:58
Mark Salsbery3-Jan-09 20:58 
GeneralRe: WPF save button Pin
siten03084-Jan-09 5:56
siten03084-Jan-09 5:56 
GeneralRe: WPF save button Pin
Mark Salsbery4-Jan-09 6:21
Mark Salsbery4-Jan-09 6:21 
Questionback ground color change inGrid Pin
member272-Jan-09 20:13
member272-Jan-09 20:13 
Questionsilverlight Pin
vkvimal2-Jan-09 18:51
vkvimal2-Jan-09 18:51 
AnswerRe: silverlight Pin
Timmy Kokke5-Jan-09 1:27
Timmy Kokke5-Jan-09 1:27 
AnswerRe: silverlight Pin
Mohammad Dayyan8-Jan-09 10:51
Mohammad Dayyan8-Jan-09 10:51 
GeneralRe: silverlight Pin
vkvimal10-Jan-09 19:05
vkvimal10-Jan-09 19:05 
GeneralRe: silverlight Pin
Mohammad Dayyan10-Jan-09 23:36
Mohammad Dayyan10-Jan-09 23:36 
GeneralRe: silverlight Pin
vkvimal23-Jan-09 18:55
vkvimal23-Jan-09 18:55 
Questionrotate an arrow using silverlight Pin
priyagee2-Jan-09 1:13
priyagee2-Jan-09 1:13 
AnswerRe: rotate an arrow using silverlight Pin
Michael Sync29-Jan-09 2:42
Michael Sync29-Jan-09 2:42 
QuestionTo Create Button Template Storyboard Pin
Member 58061221-Jan-09 18:29
Member 58061221-Jan-09 18:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.