-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Slider test #16
base: master
Are you sure you want to change the base?
Slider test #16
Conversation
<StackPanel Margin="351,5,21,54"> | ||
<RadioButton Content="RadioButton1" GroupName="radio_group_one"/> | ||
<RadioButton Content="RadioButton2" GroupName="radio_group_one"/> | ||
<RadioButton Content="RadioButton3" IsEnabled="False" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<RadioButton Content="RadioButton3" IsEnabled="False" /> | |
<Separator/> | |
<RadioButton Content="RadioButton3" IsEnabled="False" /> | |
<Separator/> |
<RadioButton Content="RadioButton2" GroupName="radio_group_one"/> | ||
<RadioButton Content="RadioButton3" IsEnabled="False" /> | ||
<RadioButton Content="RadioButton4" /> | ||
<RadioButton Content="RadioButton5" GroupName="radio_group_two" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<RadioButton Content="RadioButton5" GroupName="radio_group_two" /> | |
<Separator/> | |
<RadioButton Content="RadioButton5" GroupName="radio_group_two" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add separators, they are going to separate different radio button groups, presently it is misleading.
Win11ThemeTest/ComboBoxTest.cs
Outdated
else | ||
{ | ||
Console.WriteLine("Application not found."); | ||
Assert.That(app.Close()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here if app is null then we cannot close the app - app.close() will throw exception. Consider this in all the other controls as well.
Functionality tests for slider