memo
Posts meant to be reminders of tips, tricks pitfalls i have gone through.
I'm not going to do this often but I just found out who said one sentence that I just adore and I wanted to store it here for further reference. As far as the customer is concerned, the Interface is the product. Jef Raskin This is so true, and yet too often user experience is so low on project's priority list. There's another quote on this: Users do not care about what is inside the box, as long as the box does what they need done.Jef Raskin Technorati Tags: UX, User Experience, GUI, quotes
First of all, take a look at the following code:
private string _targetText;
private int _maxLines;
private int _maxSize;
public int Lines
{
get
{
if (_targetText ==...
How often do you find yourself writing code like this: Code Snippet string[] files = GetFiles(path);
filesListView.BeginUpdate();
for (int i = 0; i < files.Length; i++)
{
//possibly something more
...