本文整理汇总了C#中Segment.GetVariablesCount方法的典型用法代码示例。如果您正苦于以下问题:C# Segment.GetVariablesCount方法的具体用法?C# Segment.GetVariablesCount怎么用?C# Segment.GetVariablesCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Segment
的用法示例。
在下文中一共展示了Segment.GetVariablesCount方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: EnableProperties
public void EnableProperties(Segment seg)
{
var c = seg.GetVariablesCount ();
if (c > 0) {
rbDefault.Sensitive = true;
rbExisting.Sensitive = true;
rbNew.Sensitive = true;
OnVariableRadiobuttonCliecked (this, EventArgs.Empty);
} else {
DiasbaleVariable(cbDefaultVar,
cbExistVar,
etNewVar,
rbDefault,
rbExisting,
rbNew);
}
if (c > 1) {
rbDefault1.Sensitive = true;
rbExisting1.Sensitive = true;
rbNew1.Sensitive = true;
OnVariableRadiobuttonCliecked1 (this, EventArgs.Empty);
} else {
DiasbaleVariable(cbDefaultVar1,
cbExistVar1,
etNewVar1,
rbDefault1,
rbExisting1,
rbNew1);
}
if (c > 2) {
rbDefault2.Sensitive = true;
rbExisting2.Sensitive = true;
rbNew2.Sensitive = true;
OnVariableRadiobuttonCliecked2 (this, EventArgs.Empty);
} else {
DiasbaleVariable(cbDefaultVar2,
cbExistVar2,
etNewVar2,
rbDefault2,
rbExisting2,
rbNew2);
}
if (c > 3) {
rbDefault3.Sensitive = true;
rbExisting3.Sensitive = true;
rbNew3.Sensitive = true;
OnVariableRadiobuttonCliecked3 (this, EventArgs.Empty);
} else {
DiasbaleVariable(cbDefaultVar3,
cbExistVar3,
etNewVar3,
rbDefault3,
rbExisting3,
rbNew3);
}
cbFunction.Sensitive = true;
chbOverride.Sensitive = true;
}