SelectorForm.Designer.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. namespace WindowsInteropTest
  2. {
  3. partial class SelectorForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.btnEmbedToWinForms = new System.Windows.Forms.Button();
  29. this.btnEmbedToWpf = new System.Windows.Forms.Button();
  30. this.SuspendLayout();
  31. //
  32. // btnEmbedToWinForms
  33. //
  34. this.btnEmbedToWinForms.Location = new System.Drawing.Point(12, 12);
  35. this.btnEmbedToWinForms.Name = "btnEmbedToWinForms";
  36. this.btnEmbedToWinForms.Size = new System.Drawing.Size(201, 86);
  37. this.btnEmbedToWinForms.TabIndex = 0;
  38. this.btnEmbedToWinForms.Text = "Embed to WinForms";
  39. this.btnEmbedToWinForms.UseVisualStyleBackColor = true;
  40. this.btnEmbedToWinForms.Click += new System.EventHandler(this.btnEmbedToWinForms_Click);
  41. //
  42. // btnEmbedToWpf
  43. //
  44. this.btnEmbedToWpf.Location = new System.Drawing.Point(219, 12);
  45. this.btnEmbedToWpf.Name = "btnEmbedToWpf";
  46. this.btnEmbedToWpf.Size = new System.Drawing.Size(201, 86);
  47. this.btnEmbedToWpf.TabIndex = 1;
  48. this.btnEmbedToWpf.Text = "Embed to WPF";
  49. this.btnEmbedToWpf.UseVisualStyleBackColor = true;
  50. this.btnEmbedToWpf.Click += new System.EventHandler(this.btnEmbedToWpf_Click);
  51. //
  52. // SelectorForm
  53. //
  54. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  55. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  56. this.ClientSize = new System.Drawing.Size(432, 284);
  57. this.Controls.Add(this.btnEmbedToWpf);
  58. this.Controls.Add(this.btnEmbedToWinForms);
  59. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  60. this.MaximizeBox = false;
  61. this.Name = "SelectorForm";
  62. this.Text = "Interop";
  63. this.ResumeLayout(false);
  64. }
  65. #endregion
  66. private System.Windows.Forms.Button btnEmbedToWinForms;
  67. private System.Windows.Forms.Button btnEmbedToWpf;
  68. }
  69. }