ViewController.designer.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. namespace SimpleViewer.iOS
  11. {
  12. [Register ("ViewController")]
  13. partial class ViewController
  14. {
  15. [Outlet]
  16. [GeneratedCode ("iOS Designer", "1.0")]
  17. UIKit.UIImageView _imageView { get; set; }
  18. [Outlet]
  19. [GeneratedCode ("iOS Designer", "1.0")]
  20. UIKit.UIButton _nextImageButton { get; set; }
  21. [Outlet]
  22. [GeneratedCode ("iOS Designer", "1.0")]
  23. UIKit.UITextView _textView { get; set; }
  24. [Action ("_nextImageButton_TouchUpInside:")]
  25. [GeneratedCode ("iOS Designer", "1.0")]
  26. partial void NextImageButtonTouchUpInside (UIKit.UIButton sender);
  27. void ReleaseDesignerOutlets ()
  28. {
  29. if (_imageView != null) {
  30. _imageView.Dispose ();
  31. _imageView = null;
  32. }
  33. if (_nextImageButton != null) {
  34. _nextImageButton.Dispose ();
  35. _nextImageButton = null;
  36. }
  37. if (_textView != null) {
  38. _textView.Dispose ();
  39. _textView = null;
  40. }
  41. }
  42. }
  43. }