当用户单击扩展器时如何在文本框中设置焦点?

发布于 2024-12-10 00:17:04 字数 1102 浏览 3 评论 0原文

我有一个扩展器...和一个文本框。默认情况下,文本框是隐藏的。当用户单击扩展器时,我将显示文本框。这工作正常。

我需要的是,当用户单击扩展器时...我需要在文本框中设置焦点。

请帮助我做到这一点...我尝试使用以下代码...但似乎“IsFocused”是只读属性。

任何帮助将不胜感激!

<StackPanel>
  <DockPanel>
    <TextBlock DockPanel.Dock="Left"  Text="ID"/>
      <Expander x:Name="ID" DockPanel.Dock="Right" IsExpanded="False" ExpandDirection="Down">                                                    
      </Expander>
  </DockPanel>
  <TextBox Text="{Binding Path=SearchCCCId.Value,UpdateSourceTrigger=PropertyChanged}" 
     Visibility="{Binding ElementName=ID,Path=IsExpanded,Converter={x:Static local:Converters.BoolToVisibility}}"  Width="70" >
   <TextBox.Style>
     <Style>
        <Style.Triggers>
           <DataTrigger Binding="{Binding ElementName=ID, Path=IsEpanded}" Value="True" >
              <Setter Property="IsFocused" Value="True" />
           </DataTrigger>
         </Style.Triggers>
     </Style>
    </TextBox.Style>
   </TextBox>
</StackPanel>

I have an expander...and a textbox. The textbox is hidden by default. when user click on the expander, I am displaying the text box. This is working fine.

What I need is, when user click on the expander...I need to set the focus in the textbox.

Please help me to do this...I tried with following code...but it seems "IsFocused" is readonly property.

Any help would be appreciated !

<StackPanel>
  <DockPanel>
    <TextBlock DockPanel.Dock="Left"  Text="ID"/>
      <Expander x:Name="ID" DockPanel.Dock="Right" IsExpanded="False" ExpandDirection="Down">                                                    
      </Expander>
  </DockPanel>
  <TextBox Text="{Binding Path=SearchCCCId.Value,UpdateSourceTrigger=PropertyChanged}" 
     Visibility="{Binding ElementName=ID,Path=IsExpanded,Converter={x:Static local:Converters.BoolToVisibility}}"  Width="70" >
   <TextBox.Style>
     <Style>
        <Style.Triggers>
           <DataTrigger Binding="{Binding ElementName=ID, Path=IsEpanded}" Value="True" >
              <Setter Property="IsFocused" Value="True" />
           </DataTrigger>
         </Style.Triggers>
     </Style>
    </TextBox.Style>
   </TextBox>
</StackPanel>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

爱的那么颓废 2024-12-17 00:17:04

在你们的帮助下,我能够找到答案......

<TextBox.Style>
    <Style>
        <Style.Triggers>
            <DataTrigger Binding="{Binding ElementName=ID, Path=IsExpanded}" Value="True">
                <Setter Property="FocusManager.FocusedElement" 
                        Value="{Binding ElementName=PropertyIDSearch}"/>
            </DataTrigger>
        </Style.Triggers>
    </Style>
</TextBox.Style>

With all your help, I am able to find out the answer...

<TextBox.Style>
    <Style>
        <Style.Triggers>
            <DataTrigger Binding="{Binding ElementName=ID, Path=IsExpanded}" Value="True">
                <Setter Property="FocusManager.FocusedElement" 
                        Value="{Binding ElementName=PropertyIDSearch}"/>
            </DataTrigger>
        </Style.Triggers>
    </Style>
</TextBox.Style>
浸婚纱 2024-12-17 00:17:04

您可以处理 Expander 的 Expanded 事件并将焦点设置在处理程序方法内。

private void OnExpanderExpanded(object sender, RoutedEventArgs args)
{
    txtTest.Focus();
}

You can handler Expanded event of Expander and set focus inside handler method.

private void OnExpanderExpanded(object sender, RoutedEventArgs args)
{
    txtTest.Focus();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文