Exemplo n.º 1
0
 private void ClassesCB_SelectedIndexChanged(object sender, EventArgs e)
 {
     type = new AboutType(ai.types[ClassesCB.SelectedIndex]);
     FillComboBox(PropertiesCB, type.GetProperties());
     FillComboBox(MethodsCB, type.GetMethods());
     FillComboBox(InterfacesCB, type.GetInterfaces());
     FillComboBox(ConstructorsCB, type.GetConstructors());
 }
Exemplo n.º 2
0
 private void ClassesCB_SelectedIndexChanged(object sender, EventArgs e)
 {
     type = new AboutType(ai.types[ClassesCB.SelectedIndex]);
     UpdType();
 }