Advertisement
Guest User

Untitled

a guest
May 3rd, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. #pragma once
  2.  
  3. namespace Barometr {
  4.  
  5. using namespace System;
  6. using namespace System::ComponentModel;
  7. using namespace System::Collections;
  8. using namespace System::Windows::Forms;
  9. using namespace System::Data;
  10. using namespace System::Drawing;
  11.  
  12. /// <summary>
  13. /// Summary for Form1
  14. /// </summary>
  15. public ref class Form1 : public System::Windows::Forms::Form
  16. {
  17. public:
  18. Form1(void)
  19. {
  20. InitializeComponent();
  21. //
  22. //TODO: Add the constructor code here
  23. //
  24. }
  25.  
  26. protected:
  27. /// <summary>
  28. /// Clean up any resources being used.
  29. /// </summary>
  30. ~Form1()
  31. {
  32. if (components)
  33. {
  34. delete components;
  35. }
  36. }
  37.  
  38. private:
  39. /// <summary>
  40. /// Required designer variable.
  41. /// </summary>
  42. System::ComponentModel::Container ^components;
  43.  
  44. #pragma region Windows Form Designer generated code
  45. /// <summary>
  46. /// Required method for Designer support - do not modify
  47. /// the contents of this method with the code editor.
  48. /// </summary>
  49. void InitializeComponent(void)
  50. {
  51. this->SuspendLayout();
  52. //
  53. // Form1
  54. //
  55. this->AutoScaleDimensions = System::Drawing::SizeF(8, 16);
  56. this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
  57. this->ClientSize = System::Drawing::Size(764, 409);
  58. this->Name = L"Form1";
  59. this->Text = L"Form1";
  60. this->ResumeLayout(false);
  61.  
  62. }
  63. #pragma endregion
  64. };
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement