Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
What is the equivalent of SetFocus()
Message
De
11/02/2009 12:58:50
 
 
À
10/02/2009 01:33:03
Information générale
Forum:
ASP.NET
Catégorie:
Windows Presentation Foundation (WPF)
Divers
Thread ID:
01380470
Message ID:
01380980
Vues:
50
>What C# code would I use to set the focus to the named WPF TextBox below:
>
>I've tried txtPattern.Focus(), but it does nothing.
>
>
>
><TextBox Name="txtPatternName" Text="{Binding Path=PatternName, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" Width="150" />
>
Not sure how far you got with this. But you probably need to do something like this:
      Dispatcher.BeginInvoke(DispatcherPriority.Input,
                            new ThreadStart(delegate()
                            {
                            txtPatternName.Focus();
                            }));
Focus does work, but has to be executed at the right time.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform