{
_label2.IsVisible = true;
var val1 = (int)_slider1.Minimum;
- _label2.Text = "Cahnged Min Value: " + val1.ToString();
+ _label2.Text = "Changed Min Value: " + val1.ToString();
var val = (int)_slider1.Value;
_label1.Text = "Slider Value: " + val.ToString();
}
[Property("AUTHOR", "Razin Farhan Hussain, razin.fh@samsung.com")]
[Precondition(1, "NA")]
[Step(1, "Click run TC")]
- [Step(2, "Check if dragging slider change the Max value of slider after binding with second slider.")]
+ [Step(2, "Check if first slider change the Max value of slider after binding with second slider.")]
+ [Step(3, "Check if first slider Max value change from 40 to 10 after binding with second slider's Max value. Max value of first slider doesn't change corresponding to second slider value property")]
[Postcondition(1, "NA")]
public static async Task MaximumProperty_UIBH()
{
[Property("AUTHOR", "Razin Farhan Hussain, razin.fh@samsung.com")]
[Precondition(1, "NA")]
[Step(1, "Click run TC")]
- [Step(2, "Check if dragging slider change the Min value of slider after binding with second slider.")]
+ [Step(2, "Check if first slider change the Min value of slider after binding with second slider.")]
+ [Step(3, "Check if first slider Min value change from 0 to 3 after binding with second slider's Min value. Min value of first slider doesn't change corresponding to second slider value property")]
[Postcondition(1, "NA")]
public static async Task MinimumProperty_UIBH()
{