1
DotNet / Re: c# Sfml 2.0 GUI
« on: March 20, 2013, 06:17:45 pm »
I've updated Gwen.Net's SFML renderer to work with latest SFML.Net version from github (minor SFML API changes).
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Names of Events
Do name events with a verb or a verb phrase.
Do give event names a concept of before and after, using the present and past tense. For example, a close event that is raised before a window is closed would be called Closing and one that is raised after the window is closed would be called Closed.
Do not use Before or After prefixes or suffixes to indicate pre and post events.
Do name event handlers (delegates used as types of events) with the EventHandler suffix.
Do use two parameters named sender and e in event handler signatures.
The sender parameter should be of type Object, and the e parameter should be an instance of or inherit from EventArgs.
Do name event argument classes with the EventArgs suffix.
there is gwen.net
But not disposing a resource is not an error, so why should it deserve a warning?