Esempio n. 1
0
 public void SetQuestionValue(IntegerType value)
 {
     Slider.Value = (int)value.GetValue();
 }
Esempio n. 2
0
 public static void Test(IntegerType value, object expected)
 {
     Assert.AreEqual(expected.GetType(), typeof(int));
     Assert.AreEqual((int)expected, value.GetValue());
 }
Esempio n. 3
0
 public void SetQuestionValue(IntegerType value)
 {
     Spinbox.Text = value.GetValue().ToString();
 }