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; }
private void SeasonalChoose(object sender, EventArgs e) { if (Season.IsVisible == true) { Season.IsVisible = false; Downarrow.RotateTo(0); } else { Season.IsVisible = true; Downarrow.RotateTo(180); } }
private void choose(object sender, EventArgs e) { if (stack.IsVisible == true) { stack.IsVisible = false; Downarrow.RotateTo(0); } else { stack.IsVisible = true; Downarrow.RotateTo(180); } }