Are there are good uses of Partial Classes outside the webforms/winforms generated code scenarios? Or is this feature basically to support that?
Anywhere you'd have used #region sections before probably makes more sense as separate files in partial classes.
#region
I personally use partial classes for large classes where static members go in one file and instance members go in the other one.