TweetView.designer.cs 782 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // WARNING
  2. //
  3. // This file has been generated automatically by Xamarin Studio to store outlets and
  4. // actions made in the UI designer. If it is removed, they will be lost.
  5. // Manual changes to this file may not be handled correctly.
  6. //
  7. using Foundation;
  8. using System.CodeDom.Compiler;
  9. namespace TwitterSearch.Mac
  10. {
  11. [Register ("TweetView")]
  12. partial class TweetView
  13. {
  14. [Outlet]
  15. AppKit.NSImageView Image { get; set; }
  16. [Outlet]
  17. AppKit.NSTextField Text { get; set; }
  18. [Outlet]
  19. AppKit.NSTextField Title { get; set; }
  20. void ReleaseDesignerOutlets ()
  21. {
  22. if (Title != null) {
  23. Title.Dispose ();
  24. Title = null;
  25. }
  26. if (Text != null) {
  27. Text.Dispose ();
  28. Text = null;
  29. }
  30. if (Image != null) {
  31. Image.Dispose ();
  32. Image = null;
  33. }
  34. }
  35. }
  36. }