gpt4 book ai didi

c# - WPF,点击 TextBox 应该检查 RadioButton

转载 作者:行者123 更新时间:2023-11-30 22:21:06 25 4
gpt4 key购买 nike

我在一个 StackPanel 中有一个 RadioButton 和一个 TextBox ,如下所示:

  <StackPanel Orientation="Horizontal">
<RadioButton x:Name="rbSelectedQuantity" GroupName="CardQuantity"
FontSize="14" Margin="5"
Content="Selected Quantity">
</RadioButton>

<TextBox x:Name="txtSelectedQuantity" Width="50" Margin="5" TextAlignment="Right"
Text="0"></TextBox>
</StackPanel>

这是我的场景:如果我在文本框内单击,我的单选按钮应该会被自动选中。

我应该怎么做?

最佳答案

处理 TextBox 的 GotFocus 事件并将 RadioButton IsChecked 属性设置为 True

private void txtSelectedQuantity_GotFocus(object sender, RoutedEventArgs e)
{
rbSelectedQuantity.IsChecked = True;
}

关于c# - WPF,点击 TextBox 应该检查 RadioButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14580589/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com