终端一体化运控平台
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ToastLocation.cs 676 B

há 2 anos
12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.CustomResource.UserControls.Enum
  7. {
  8. public enum ToastLocation
  9. {
  10. OwnerCenter,
  11. OwnerLeft,
  12. OwnerRight,
  13. OwnerTopLeft,
  14. OwnerTopCenter,
  15. OwnerTopRight,
  16. OwnerBottomLeft,
  17. OwnerBottomCenter,
  18. OwnerBottomRight,
  19. ScreenCenter,
  20. ScreenLeft,
  21. ScreenRight,
  22. ScreenTopLeft,
  23. ScreenTopCenter,
  24. ScreenTopRight,
  25. ScreenBottomLeft,
  26. ScreenBottomCenter,
  27. ScreenBottomRight,
  28. Default//OwnerCenter
  29. }
  30. }