1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- // WARNING
- //
- // This file has been generated automatically by Xamarin Studio from the outlets and
- // actions declared in your storyboard file.
- // Manual changes to this file will not be maintained.
- //
- using Foundation;
- using System;
- using System.CodeDom.Compiler;
- namespace SimpleViewer.iOS
- {
- [Register ("ViewController")]
- partial class ViewController
- {
- [Outlet]
- [GeneratedCode ("iOS Designer", "1.0")]
- UIKit.UIImageView _imageView { get; set; }
- [Outlet]
- [GeneratedCode ("iOS Designer", "1.0")]
- UIKit.UIButton _nextImageButton { get; set; }
- [Outlet]
- [GeneratedCode ("iOS Designer", "1.0")]
- UIKit.UITextView _textView { get; set; }
- [Action ("_nextImageButton_TouchUpInside:")]
- [GeneratedCode ("iOS Designer", "1.0")]
- partial void NextImageButtonTouchUpInside (UIKit.UIButton sender);
- void ReleaseDesignerOutlets ()
- {
- if (_imageView != null) {
- _imageView.Dispose ();
- _imageView = null;
- }
- if (_nextImageButton != null) {
- _nextImageButton.Dispose ();
- _nextImageButton = null;
- }
- if (_textView != null) {
- _textView.Dispose ();
- _textView = null;
- }
- }
- }
- }
|