, graph.Label.Visible bool, myConfigSection.LabelsVisible bool?. bool? bool, . :
1: myConfigSection.LabelsVisible bool:
graph.Label.Visible = (bool)myConfigSection.LabelsVisible;
2: bool myConfigSection.LabelsVisible:
graph.Label.Visible = myConfigSection.LabelsVisible.Value;
3: , myConfigSection.LabelsVisible null:
graph.Label.Visible = myConfigSection.LabelsVisible.HasValue ?
myConfigSection.LabelsVisible.Value : true;
4: myConfigSection.LabelsVisible:
[ConfigurationProperty("labelsVisible", DefaultValue = true, IsRequired = false)]
public bool LabelsVisible {
get {
bool? b= (bool?)this["labelsVisible"];
return b.HasValue ? b.Value : true;
}
}
, , , , myConfigSection.LabelsVisible null. , getter myConfigSection.LabelsVisible.