SIL.FieldWorks.FdoUi.BulkEditBarPhonologicalFeatures.MakeItem C# (CSharp) Method

MakeItem() protected method

protected MakeItem ( XmlNode colSpec ) : BulkEditItem
colSpec System.Xml.XmlNode
return SIL.FieldWorks.Common.Controls.BulkEditItem
		protected override BulkEditItem MakeItem(XmlNode colSpec)
		{
			BulkEditItem bei = base.MakeItem(colSpec);
			if (bei == null)
				return null;
			var besc = bei.BulkEditControl as PhonologicalFeatureEditor;
			if (besc != null)
				besc.EnableTargetFeatureCombo +=
					new EventHandler<TargetFeatureEventArgs>(BulkEditBarPhonologicalFeatures_EnableTargetFeatureCombo);
			return bei;
		}