C# Класс ARCed.Controls.DatabaseObjectListBox

Наследование: System.Windows.Forms.GroupBox
Показать файл Открыть проект

Private Properties

Свойство Тип Описание
ButtonMaximumClick void
InitializeComponent void
ListBoxObjectsSelectedIndexChanged void
PictureBoxHeaderDoubleClick void
PictureBoxHeaderResize void

Открытые методы

Метод Описание
BeginUpdate ( ) : void

Maintains performance while items are added to the control's listbox one at a time by preventing painting until EndUpdate() is called.

DatabaseObjectListBox ( ) : System

Default constructor

EndUpdate ( ) : void

Resumes painting of the control's listbox after painting is suspended from calling BeginUpdate().

GetItemRectangle ( int index ) : Rectangle

Returns the bounding rectangle for an item in the control's listbox

PopulateList ( List objectList ) : void

Clears and populates the listbox on the control with the given collection of objects

RefreshHeader ( ) : void

Forces a repainting of the header. Called after settings have changed.

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

Clean up any resources being used.

Приватные методы

Метод Описание
ButtonMaximumClick ( object sender, EventArgs e ) : void
InitializeComponent ( ) : void

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

ListBoxObjectsSelectedIndexChanged ( object sender, EventArgs e ) : void
PictureBoxHeaderDoubleClick ( object sender, EventArgs e ) : void
PictureBoxHeaderResize ( object sender, EventArgs e ) : void

Описание методов

BeginUpdate() публичный метод

Maintains performance while items are added to the control's listbox one at a time by preventing painting until EndUpdate() is called.
public BeginUpdate ( ) : void
Результат void

DatabaseObjectListBox() публичный метод

Default constructor
public DatabaseObjectListBox ( ) : System
Результат System

Dispose() защищенный метод

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
Результат void

EndUpdate() публичный метод

Resumes painting of the control's listbox after painting is suspended from calling BeginUpdate().
public EndUpdate ( ) : void
Результат void

GetItemRectangle() публичный метод

Returns the bounding rectangle for an item in the control's listbox
public GetItemRectangle ( int index ) : Rectangle
index int Index of the item in the listbox to get the rectangle for
Результат System.Drawing.Rectangle

PopulateList() публичный метод

Clears and populates the listbox on the control with the given collection of objects
public PopulateList ( List objectList ) : void
objectList List Collection of items
Результат void

RefreshHeader() публичный метод

Forces a repainting of the header. Called after settings have changed.
public RefreshHeader ( ) : void
Результат void