現在編碼我的第一個GUI程序,我有一個問題(我知道它非常簡單,但我無法找到答案)。我有2個單選按鈕,從eachother分離,我無法檢查如果單選按鈕被選中,here`s我的代碼:WPF單選按鈕檢查
<RadioButton Content="Metinės"
Checked="RadioButton_Checked_1"
HorizontalAlignment="Left"
Margin="393,124,0,0"
Height="21"
Width="101"
FontSize="14"
ClickMode="Press"
VerticalAlignment="Top"
FontFamily="Segoe WP Semibold"/>
和C#
if (RadioButton_Checked == true)
{
//program code
}
如果你寫了(RBMetLines.HasValue && RBMetLines.Value),你將不必解釋你的代碼 – Trajan