OpenBve.formMain.comboboxInterpolation_SelectedIndexChanged C# (CSharp) Méthode

comboboxInterpolation_SelectedIndexChanged() private méthode

private comboboxInterpolation_SelectedIndexChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
Résultat void
		private void comboboxInterpolation_SelectedIndexChanged(object sender, EventArgs e) {
			int i = comboboxInterpolation.SelectedIndex;
			bool q = i == (int)Interface.InterpolationMode.AnisotropicFiltering;
			labelAnisotropic.Enabled = q;
			updownAnisotropic.Enabled = q;
			q = i != (int)Interface.InterpolationMode.NearestNeighbor & i != (int)Interface.InterpolationMode.Bilinear;
		}
formMain