예제 #1
0
 private void Nonseasonal(object sender, EventArgs e)
 {
     Option.Text      = "Non-Seasonal";
     Option.TextColor = Color.FromHex("#000000");
     Season.IsVisible = false;
     Downarrow.RotateTo(0);
     SeasonFrame.IsVisible = false;
 }
예제 #2
0
 private void SeasonalChoose(object sender, EventArgs e)
 {
     if (Season.IsVisible == true)
     {
         Season.IsVisible = false;
         Downarrow.RotateTo(0);
     }
     else
     {
         Season.IsVisible = true;
         Downarrow.RotateTo(180);
     }
 }
예제 #3
0
 private void choose(object sender, EventArgs e)
 {
     if (stack.IsVisible == true)
     {
         stack.IsVisible = false;
         Downarrow.RotateTo(0);
     }
     else
     {
         stack.IsVisible = true;
         Downarrow.RotateTo(180);
     }
 }