web-dev-qa-db-ja.com

XAMLでのみオートフォーカスを設定するにはどうすればよいですか?

私のxamlファイルのテキストボックスにオートフォーカスを設定することは可能ですか?

<Window x:Class="WpfApplication1.Views.Test1"
            xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
            Height="100"
            Width="210"
            WindowStartupLocation="CenterOwner"
            ShowInTaskbar="False"
            Background="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"
            ResizeMode="CanResizeWithGrip">
    <TextBox HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Visible" TextWrapping="Wrap" AcceptsReturn="True" Text="{Binding Path=Text, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
</Window>
26
David
<TextBox FocusManager.FocusedElement="{Binding RelativeSource={RelativeSource Self}}" />
23
LPL

はい、使用できますFocusManager.FocusedElement添付プロパティ。

FocusManager.FocusedElement="{Binding ElementName=textBox1}"
14
user1399377

このようなものを試してください

<Window x:Class="WpfApplication18.MainWindow"
        xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="500" Width="525" FocusManager.FocusedElement="textcontrol">
    <Grid>
       <TextBox Name="textcontrol" />
    </Grid>
</Window>
8
Dean Chalk

バインディングはやり過ぎだと思います。リファレンスはより軽量です。

<Window xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
        FocusManager.FocusedElement="{x:Reference textBox1}">
    <StackPanel>
        <TextBox x:Name="textBox1" />
    </StackPanel>
</Window>
6