- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
protected void chxPeriodCostDeviationGreater_CheckedChanged(object sender, EventArgs e)
{
foreach (Pair lstPair in lstPairs)
{
if (lstPair.First.Equals(sender))
{
(lstPair.Second as TextBox).Enabled = (lstPair.First as CheckBox).Checked;
return;
}
}
}
А где Visible ?