private void AllowOtherSelectors(bool value)
{
foreach (var c in this.Parent.Controls)
{
if (c == this)
continue;
if (!(c is RoundGroupedSelector))
continue;
var rgs = c as RoundGroupedSelector;
rgs.AllowMultiple = value;
}
}
虽然这段代码有效......我觉得它可以从使用 LINQ 中受益。该程序将在带有 Atom 处理器的平板电脑上使用,所以我只是在寻找使用最少的资源/周期。