Browse by Tags
All Tags »
Application Design (
RSS)
I put the source code out on http://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=ReminderNet so it is available for download. Sorry for not getting this out there sooner. You can download and take a look at the project, recommend refactorings...
To make it easier, I created this following method: public void AddAttribute(string name, object value) { this.Attributes.Add(new MetadataAttribute(name, value)); } This made it easier to add methods, but it added overhead. I changed the MetadataAttribute...
In following the XP methodology for keeping the design simple, there are several approaches to take; however, I wonder how many of those are really worth it. For instance, I could implement a CAB solution, but the learning curve, along with the time frame...
The choice was to be between menus, toolbars, or some other means, to note the features we wanted to implement. I made the choice to use menus, as this was clear and to the point, and we only had a few items anyway; later, at some point, we can add toolbars...