C# Class SphereStudio.Plugins.Components.EntityControl

Mostrar archivo Open project: Radnen/spherestudio

Public Methods

Method Description
EntityControl ( ) : System

This control allows you to peer at the list of entities on a map.

UpdateList ( List entities, List layers ) : void

Updates this entity view with appropriate data. WinForms API lacks the ability to dynamically bind to a data set so this will have to do.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

Private Methods

Method Description
EntityListView_ItemActivate ( object sender, EventArgs e ) : void
InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

Method Details

Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
return void

EntityControl() public method

This control allows you to peer at the list of entities on a map.
public EntityControl ( ) : System
return System

UpdateList() public method

Updates this entity view with appropriate data. WinForms API lacks the ability to dynamically bind to a data set so this will have to do.
public UpdateList ( List entities, List layers ) : void
entities List The entity list from the map you want to view.
layers List
return void