EmbedToWinFormsDemo.Designer.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. using Avalonia.Win32.Interoperability;
  2. namespace WindowsInteropTest
  3. {
  4. partial class EmbedToWinFormsDemo
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
  31. this.groupBox1 = new System.Windows.Forms.GroupBox();
  32. this.groupBox2 = new System.Windows.Forms.GroupBox();
  33. this.avaloniaHost = new WinFormsAvaloniaControlHost();
  34. this.groupBox1.SuspendLayout();
  35. this.groupBox2.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // button1
  39. //
  40. this.button1.Location = new System.Drawing.Point(28, 29);
  41. this.button1.Name = "button1";
  42. this.button1.Size = new System.Drawing.Size(164, 73);
  43. this.button1.TabIndex = 0;
  44. this.button1.Text = "button1";
  45. this.button1.UseVisualStyleBackColor = true;
  46. //
  47. // monthCalendar1
  48. //
  49. this.monthCalendar1.Location = new System.Drawing.Point(28, 114);
  50. this.monthCalendar1.Name = "monthCalendar1";
  51. this.monthCalendar1.TabIndex = 1;
  52. //
  53. // groupBox1
  54. //
  55. this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  56. | System.Windows.Forms.AnchorStyles.Left)));
  57. this.groupBox1.Controls.Add(this.button1);
  58. this.groupBox1.Controls.Add(this.monthCalendar1);
  59. this.groupBox1.Location = new System.Drawing.Point(12, 12);
  60. this.groupBox1.Name = "groupBox1";
  61. this.groupBox1.Size = new System.Drawing.Size(227, 418);
  62. this.groupBox1.TabIndex = 2;
  63. this.groupBox1.TabStop = false;
  64. this.groupBox1.Text = "WinForms";
  65. //
  66. // groupBox2
  67. //
  68. this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  69. | System.Windows.Forms.AnchorStyles.Left)
  70. | System.Windows.Forms.AnchorStyles.Right)));
  71. this.groupBox2.Controls.Add(this.avaloniaHost);
  72. this.groupBox2.Location = new System.Drawing.Point(245, 12);
  73. this.groupBox2.Name = "groupBox2";
  74. this.groupBox2.Size = new System.Drawing.Size(501, 418);
  75. this.groupBox2.TabIndex = 3;
  76. this.groupBox2.TabStop = false;
  77. this.groupBox2.Text = "Avalonia";
  78. //
  79. // avaloniaHost
  80. //
  81. this.avaloniaHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  82. | System.Windows.Forms.AnchorStyles.Left)
  83. | System.Windows.Forms.AnchorStyles.Right)));
  84. this.avaloniaHost.Content = null;
  85. this.avaloniaHost.Location = new System.Drawing.Point(6, 19);
  86. this.avaloniaHost.Name = "avaloniaHost";
  87. this.avaloniaHost.Size = new System.Drawing.Size(489, 393);
  88. this.avaloniaHost.TabIndex = 0;
  89. this.avaloniaHost.Text = "avaloniaHost";
  90. //
  91. // EmbedToWinFormsDemo
  92. //
  93. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  94. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  95. this.ClientSize = new System.Drawing.Size(758, 442);
  96. this.Controls.Add(this.groupBox2);
  97. this.Controls.Add(this.groupBox1);
  98. this.MinimumSize = new System.Drawing.Size(600, 400);
  99. this.Name = "EmbedToWinFormsDemo";
  100. this.Text = "EmbedToWinFormsDemo";
  101. this.groupBox1.ResumeLayout(false);
  102. this.groupBox2.ResumeLayout(false);
  103. this.ResumeLayout(false);
  104. }
  105. #endregion
  106. private System.Windows.Forms.Button button1;
  107. private System.Windows.Forms.MonthCalendar monthCalendar1;
  108. private System.Windows.Forms.GroupBox groupBox1;
  109. private System.Windows.Forms.GroupBox groupBox2;
  110. private WinFormsAvaloniaControlHost avaloniaHost;
  111. }
  112. }