MainWindowController.designer.cs 992 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 ("MainWindowController")]
  12. partial class MainWindowController
  13. {
  14. [Outlet]
  15. AppKit.NSButton LoadTweets { get; set; }
  16. [Outlet]
  17. AppKit.NSTextField Search { get; set; }
  18. [Outlet]
  19. AppKit.NSTextField TitleLabel { get; set; }
  20. [Outlet]
  21. AppKit.NSTableView TweetTable { get; set; }
  22. void ReleaseDesignerOutlets ()
  23. {
  24. if (LoadTweets != null) {
  25. LoadTweets.Dispose ();
  26. LoadTweets = null;
  27. }
  28. if (Search != null) {
  29. Search.Dispose ();
  30. Search = null;
  31. }
  32. if (TweetTable != null) {
  33. TweetTable.Dispose ();
  34. TweetTable = null;
  35. }
  36. if (TitleLabel != null) {
  37. TitleLabel.Dispose ();
  38. TitleLabel = null;
  39. }
  40. }
  41. }
  42. }