0
我對C#並不陌生,但我對XAML/MVVM是新手。如何增加單選按鈕的大小
我正在開發一個觸摸屏應用程序。它有許多單選按鈕,但我需要它們更大,以便當有人觸摸它們時,它們會被檢查。
我不介意單選按鈕周圍的區域是否設置了檢查,或者單選按鈕的實際大小是否增加。
這是我的單選按鈕代碼。大約有20個,所以最少量的代碼可能是最好的。
<RadioButton HorizontalAlignment="Center" VerticalAlignment="Center" GroupName="History" Grid.Column="2" Grid.Row="3" Command="{Binding HealthQuestionsTrue}" CommandParameter="MedicalHistory"></RadioButton>
<RadioButton HorizontalAlignment="Center" VerticalAlignment="Center" GroupName="History" Grid.Column="3" Grid.Row="3" Command="{Binding HealthQuestionsFalse}" CommandParameter="MedicalHistory"></RadioButton>
使用它在視框中 – Tcraft
@Lithium我沒有發現問題,但它的工作 – Calvin