Method |
Description |
|
ClearDataGridView ( System.Windows.Forms.DataGridView dgv ) : void |
This method demonstrates a pattern for making thread-safe calls on a Windows Forms control. If the calling thread is different from the thread that created the DataGridView control, this method creates a ClearCallback and calls itself asynchronously using the Invoke method. If the calling thread is the same as the thread that created the DataGridView control, the Object is set directly. |
|
Create_FristTime ( ) : void |
|
|
Reset_dataGridView ( System.Windows.Forms.DataGridView &sender ) : void |
|
|
SetText ( string text ) : void |
This method demonstrates a pattern for making thread-safe calls on a Windows Forms control. If the calling thread is different from the thread that created the Label control, this method creates a SetTextCallback and calls itself asynchronously using the Invoke method. If the calling thread is the same as the thread that created the Label control, the Text property is set directly. |
|
Standard_dgv ( Point location, string Name ) : System.Windows.Forms.DataGridView |
|
|
Standard_lbl ( Point location, string Text, string Name ) : Label |
|
|
dgv_CellContentClick ( object sender, System.Windows.Forms.DataGridViewCellEventArgs e ) : void |
|
|
dgv_CellMouseUp ( object sender, System.Windows.Forms.DataGridViewCellMouseEventArgs e ) : void |
|
|