Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<Grid x:Name="LayoutRoot">
    <Button x:Name="btn_A" Content="A" HorizontalAlignment="Left" Height="36" Margin="194,160,0,0" VerticalAlignment="Top" Width="70" Click="Button_Click" />
    <TextBox  x:Name="txt_focus"  HorizontalAlignment="Left" Height="34.5" Margin="177,98,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="97" TextChanged="TextBox_TextChanged" />
</Grid>

c# code below

public partial class focus : Window
{
    public focus()
    {
        this.InitializeComponent();         
    }

    private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
    {           
        txt_focus.Focus();
    }

    private void Button_Click(object sender, RoutedEventArgs e)
    {          

        txt_focus.Text += btn_A.Content.ToString();
    }

    private void txt_focus_GotFocus(object sender, RoutedEventArgs e)
    {
        int count = txt_focus.Text.Length;
        txt_focus.CaretIndex = count;
    }
}

The above code is working well. But i what i need is, I have to achieve the below code in xaml

private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
{           
    txt_focus.Focus();
}
share|improve this question
1  
What is "focusing cursor textbox?" – Dan Puzey Aug 1 '12 at 13:24
What do you mean, @Chandru A? – John Aug 1 '12 at 13:27

2 Answers

you can try with this code

<StackPanel Orientation="Vertical"
            FocusManager.FocusedElement="{Binding ElementName=txt_focus}">
    <TextBox x:Name="txt_focus" 
             HorizontalAlignment="Left"
             Height="34.5"
             Margin="167.5,139,0,0"
             TextWrapping="Wrap"
             VerticalAlignment="Top"
             Width="97"
             TextChanged="TextBox_TextChanged" />
</StackPanel>
share|improve this answer
without using StackPanel. what should i do ? – Chandru A Aug 1 '12 at 13:41

You can use javascript and use this code here:

if(isset($_REQUEST['sub_con_page'])) 
{ 
//correct 
} 
else  
{ ?> 
<script type="text/javascript"> 
$(document).ready(function() { 
  $("#txt_focus").focus(); 
}); 
</script> 
<?php } ?> 
share|improve this answer
1  
-1 It's about WPF + XAML not PHP + HTML – GameScripting Aug 1 '12 at 18:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.