UI.h
上传用户:yunyi28
上传日期:2021-04-25
资源大小:6978k
文件大小:1k
源码类别:

分形几何

开发平台:

Visual C++

  1. #pragma once
  2. using namespace System;
  3. using namespace System::ComponentModel;
  4. using namespace System::Collections;
  5. using namespace System::Windows::Forms;
  6. using namespace System::Data;
  7. using namespace System::Drawing;
  8. namespace XLT {
  9. /// <summary>
  10. /// UI 摘要
  11. ///
  12. /// 警告: 如果更改此类的名称,则需要更改
  13. ///          与此类所依赖的所有 .resx 文件关联的托管资源编译器工具的
  14. ///          “资源文件名”属性。否则,
  15. ///          设计器将不能与此窗体的关联
  16. ///          本地化资源正确交互。
  17. /// </summary>
  18. public ref class UI : public System::Windows::Forms::Form
  19. {
  20. public:
  21. UI(void)
  22. {
  23. InitializeComponent();
  24. //
  25. //TODO: 在此处添加构造函数代码
  26. //
  27. }
  28. protected:
  29. /// <summary>
  30. /// 清理所有正在使用的资源。
  31. /// </summary>
  32. ~UI()
  33. {
  34. if (components)
  35. {
  36. delete components;
  37. }
  38. }
  39. private:
  40. /// <summary>
  41. /// 必需的设计器变量。
  42. /// </summary>
  43. System::ComponentModel::Container ^components;
  44. #pragma region Windows Form Designer generated code
  45. /// <summary>
  46. /// 设计器支持所需的方法 - 不要
  47. /// 使用代码编辑器修改此方法的内容。
  48. /// </summary>
  49. void InitializeComponent(void)
  50. {
  51. this->components = gcnew System::ComponentModel::Container();
  52. this->Size = System::Drawing::Size(300,300);
  53. this->Text = L"UI";
  54. this->Padding = System::Windows::Forms::Padding(0);
  55. this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
  56.         }
  57. #pragma endregion
  58. };
  59. }