PhotoWindow.cs 197 B

1234567891011121314
  1. using System;
  2. public class PhotoWindow : BasePhotoWindow
  3. {
  4. public override string windowName
  5. {
  6. get
  7. {
  8. return this.Type.ToString();
  9. }
  10. }
  11. public PhotoWindowManager.WindowType Type;
  12. }