-
Notifications
You must be signed in to change notification settings - Fork 4
Slider test #16
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
Open
vidya-mb
wants to merge
7
commits into
singhashish-wpf:master
Choose a base branch
from
vidya-mb:sliderTest
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Slider test #16
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
a5f1c88
Funtionality tests for slider.
vidya-mb a27a5e4
Merge branch 'sliderTest' of https://github.com/vidya-mb/Win11ThemeSa…
vidya-mb ea29caa
Removed extra checkbox test
vidya-mb 3839ea3
Changes for close window
vidya-mb 8f4f75a
Adding radio button cases
vidya-mb c6b5102
Refined ComboBox tests
804e3e0
Refined all other controls
vidya-mb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,25 @@ | ||||||||
| <Window x:Class="TestingApplication.RadioButtonWindow" | ||||||||
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||||||||
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||||||||
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||||||||
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||||||||
| xmlns:local="clr-namespace:TestingApplication" | ||||||||
| mc:Ignorable="d" | ||||||||
| Title="RadioButtonWindow" Height="450" Width="800"> | ||||||||
| <Grid Margin="25,35,52,27"> | ||||||||
| <StackPanel Margin="0,0,0,162" HorizontalAlignment="Left" Width="341"> | ||||||||
| <RadioButton Content="Option A" /> | ||||||||
| <RadioButton Content="Option B" /> | ||||||||
| <RadioButton Content="Option C" /> | ||||||||
| <RadioButton Content="Option D" /> | ||||||||
| </StackPanel> | ||||||||
| <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" /> | ||||||||
| <RadioButton Content="RadioButton4" /> | ||||||||
| <RadioButton Content="RadioButton5" GroupName="radio_group_two" /> | ||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
||||||||
| <RadioButton Content="RadioButton6" GroupName="radio_group_two"/> | ||||||||
| </StackPanel> | ||||||||
| </Grid> | ||||||||
| </Window> | ||||||||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Linq; | ||
| using System.Text; | ||
| using System.Threading.Tasks; | ||
| using System.Windows; | ||
| using System.Windows.Controls; | ||
| using System.Windows.Data; | ||
| using System.Windows.Documents; | ||
| using System.Windows.Input; | ||
| using System.Windows.Media; | ||
| using System.Windows.Media.Imaging; | ||
| using System.Windows.Shapes; | ||
|
|
||
| namespace TestingApplication | ||
| { | ||
| /// <summary> | ||
| /// Interaction logic for RadioButtonWindow.xaml | ||
| /// </summary> | ||
| public partial class RadioButtonWindow : Window | ||
| { | ||
| public RadioButtonWindow() | ||
| { | ||
| InitializeComponent(); | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <Window x:Class="TestingApplication.SliderWindow" | ||
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
| xmlns:local="clr-namespace:TestingApplication" | ||
| mc:Ignorable="d" | ||
| Title="SliderWindow" Height="450" Width="800"> | ||
| <Grid> | ||
| <Slider x:Name="slider" HorizontalAlignment="Left" Margin="243,173,0,0" VerticalAlignment="Top" Width="120"/> | ||
| </Grid> | ||
| </Window> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Linq; | ||
| using System.Text; | ||
| using System.Threading.Tasks; | ||
| using System.Windows; | ||
| using System.Windows.Controls; | ||
| using System.Windows.Data; | ||
| using System.Windows.Documents; | ||
| using System.Windows.Input; | ||
| using System.Windows.Media; | ||
| using System.Windows.Media.Imaging; | ||
| using System.Windows.Shapes; | ||
|
|
||
| namespace TestingApplication | ||
| { | ||
| /// <summary> | ||
| /// Interaction logic for SliderWindow.xaml | ||
| /// </summary> | ||
| public partial class SliderWindow : Window | ||
| { | ||
| public SliderWindow() | ||
| { | ||
| InitializeComponent(); | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.