SampleViewController.designer.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // WARNING
  2. //
  3. // This file has been generated automatically by Xamarin Studio to store outlets and
  4. // actions made in the Xcode designer. If it is removed, they will be lost.
  5. // Manual changes to this file may not be handled correctly.
  6. //
  7. #if __UNIFIED__
  8. using Foundation;
  9. using UIKit;
  10. #else
  11. using MonoTouch.Foundation;
  12. using MonoTouch.UIKit;
  13. #endif
  14. using System.CodeDom.Compiler;
  15. namespace SDWebImageSimpleSample
  16. {
  17. [Register ("SampleViewController")]
  18. partial class SampleViewController
  19. {
  20. [Outlet]
  21. UIImageView imageView { get; set; }
  22. [Outlet]
  23. UIProgressView progressBar { get; set; }
  24. [Outlet]
  25. UILabel lblPercent { get; set; }
  26. [Outlet]
  27. UIButton btnDownload { get; set; }
  28. void ReleaseDesignerOutlets ()
  29. {
  30. if (imageView != null) {
  31. imageView.Dispose ();
  32. imageView = null;
  33. }
  34. if (progressBar != null) {
  35. progressBar.Dispose ();
  36. progressBar = null;
  37. }
  38. if (lblPercent != null) {
  39. lblPercent.Dispose ();
  40. lblPercent = null;
  41. }
  42. if (btnDownload != null) {
  43. btnDownload.Dispose ();
  44. btnDownload = null;
  45. }
  46. }
  47. }
  48. }