Moving graphics
What is the code for moving graphics created at run time.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bechir BejaouiPosted Nov 30, 2008, 11:40 AM
then you implement the Dispose method of the IDisposable interface as follow
public void Dispose()
{
GC.ReRegisterForFinalize(this);
}