111,095
社区成员




public void notifySelection(ref IvcSelection Selection, int SelectionTypeChange)
{
if (Selection.ItemCount == 0)
{
return;
}
if (Selection.ItemCount >= 1)
{
for (int i = 0; i < Selection.ItemCount; i++)
{
comp = (IvcComponent)Selection.getItem(i);
for (int a = 0; a < comp.PropertyCount; a++)
{
string propName = comp.getPropertyName(a);
object propValue = comp.getProperty(propName);
BeginInvoke(new myDelegate(UpdateTextBox), propName + "::" + propValue);
}
}
}
}