Difference between revisions of "CSharp Notes"

From PeformIQ Upgrade
Jump to navigation Jump to search
Line 36: Line 36:
* http://www.java2s.com/Code/CSharp/Event/MouseMovement.htm
* http://www.java2s.com/Code/CSharp/Event/MouseMovement.htm
* http://stackoverflow.com/questions/2698673/disabling-mouse-movement-and-clicks-altogether-in-c-sharp
* http://stackoverflow.com/questions/2698673/disabling-mouse-movement-and-clicks-altogether-in-c-sharp
* https://msdn.microsoft.com/en-us/library/ms171545(VS.80).aspx


==Examples==
==Examples==

Revision as of 21:34, 28 May 2015

Links

Treads

Deadlocks

INI FIles

Config Files

Lists

Events

Examples

List<Address> people = new List<Address>();
Address t = new Address();
people.RemoveAt(e.RowIndex);
grdShow.EditIndex = -1;
grdShow.DataSource = people;
grdShow.DataBind();

Working with Images

C-Sharp Image Processing | C-Sharp - Working with Images