ViewController.designer.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // WARNING
  2. //
  3. // This file has been generated automatically by Xamarin Studio from the outlets and
  4. // actions declared in your storyboard file.
  5. // Manual changes to this file will not be maintained.
  6. //
  7. using Foundation;
  8. using System;
  9. using System.CodeDom.Compiler;
  10. using UIKit;
  11. namespace ImageSearch.iOS
  12. {
  13. [Register ("ViewController")]
  14. partial class ViewController
  15. {
  16. [Outlet]
  17. [GeneratedCode ("iOS Designer", "1.0")]
  18. UIKit.UIActivityIndicatorView ActivityIsLoading { get; set; }
  19. [Outlet]
  20. [GeneratedCode ("iOS Designer", "1.0")]
  21. UIKit.UIButton ButtonSearch { get; set; }
  22. [Outlet]
  23. [GeneratedCode ("iOS Designer", "1.0")]
  24. UIKit.UICollectionView CollectionViewImages { get; set; }
  25. [Outlet]
  26. [GeneratedCode ("iOS Designer", "1.0")]
  27. UIKit.UITextField TextFieldQuery { get; set; }
  28. void ReleaseDesignerOutlets ()
  29. {
  30. if (ActivityIsLoading != null) {
  31. ActivityIsLoading.Dispose ();
  32. ActivityIsLoading = null;
  33. }
  34. if (ButtonSearch != null) {
  35. ButtonSearch.Dispose ();
  36. ButtonSearch = null;
  37. }
  38. if (CollectionViewImages != null) {
  39. CollectionViewImages.Dispose ();
  40. CollectionViewImages = null;
  41. }
  42. if (TextFieldQuery != null) {
  43. TextFieldQuery.Dispose ();
  44. TextFieldQuery = null;
  45. }
  46. }
  47. }
  48. }