Exemplo n.º 1
0
 private void PopulateFeatureHeader()
 {
     FeaturePanelCaption.Text = string.Format(
         "{0} Activation(s) of {1} Feature(s)",
         _FeatureLocations.GetTotalLocationCount(),
         _FeatureLocations.Count
         );
 }
Exemplo n.º 2
0
 private void ReviewActivationsOfFeatures(FeatureLocationSet featLocs)
 {
     if (featLocs.Count == 0 || featLocs.GetTotalLocationCount() == 0)
     {
         MessageBox.Show("No activations found");
     }
     else
     {
         LocationForm form = new LocationForm(featLocs);
         form.ShowDialog();
     }
 }