本文整理汇总了C#中Feature.addNeighbor方法的典型用法代码示例。如果您正苦于以下问题:C# Feature.addNeighbor方法的具体用法?C# Feature.addNeighbor怎么用?C# Feature.addNeighbor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Feature
的用法示例。
在下文中一共展示了Feature.addNeighbor方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: featureCreateButton_Click
//Feature Creation Methods
private void featureCreateButton_Click(object sender, EventArgs e)
{
if (textBox1.Lines.Length == 0)
{
MessageBox.Show("You cannot create a feature with no name", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return;
}
string data = textBox1.Lines[0];
if (featGraph.hasNodeData(data))
{
MessageBox.Show("You cannot create two features with the same name", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return;
}
if (hasBadChar(data))
{
MessageBox.Show("The values you have entered contain characters that are not allowed\nThe characters that you cannot use are " + BAD_CHARS, "Warning", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return;
}
textBox1.Clear();
Feature toAdd = new Feature(data);
for (int x = 0; x < featureCreatorCheckedListBox.CheckedItems.Count; x++)
{
toAdd.addNeighbor(featGraph.getFeature(featureCreatorCheckedListBox.CheckedItems[x].ToString()));
featGraph.getFeature(featureCreatorCheckedListBox.CheckedItems[x].ToString()).addParent(toAdd);
//featGraph.getFeature(checkedListBox1.CheckedItems[x].ToString()).addNeighbor(toAdd);
}
featGraph.addFeature(toAdd);
refreshAllButUpdateFeature();
updateFlag = true;
}