PageRenderTime 53ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/release3.0/Windows7APICodePack/Samples/DirectX/Direct3D11/Tutorials/Tutorial02_WinFormsControl/Form1.Designer.cs

#
C# | 59 lines | 35 code | 7 blank | 17 comment | 3 complexity | f8470a3ee38a30e1866112ced98c8a34 MD5 | raw file
Possible License(s): Apache-2.0, GPL-2.0, LGPL-2.1, GPL-3.0, Unlicense
  1. namespace Microsoft.WindowsAPICodePack.Samples.Direct3D11
  2. {
  3. partial class Form1
  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.directControl = new Microsoft.WindowsAPICodePack.DirectX.Controls.DirectControl();
  29. this.SuspendLayout();
  30. //
  31. // directControl
  32. //
  33. this.directControl.Location = new System.Drawing.Point(12, 12);
  34. this.directControl.Name = "directControl";
  35. this.directControl.Size = new System.Drawing.Size(606, 426);
  36. this.directControl.TabIndex = 0;
  37. this.directControl.Load += new System.EventHandler(this.directControl_Load);
  38. //
  39. // Form1
  40. //
  41. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  42. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  43. this.ClientSize = new System.Drawing.Size(630, 450);
  44. this.Controls.Add(this.directControl);
  45. this.Name = "Form1";
  46. this.Text = "Direct3D 11 Tutorial 01";
  47. this.ResumeLayout(false);
  48. }
  49. #endregion
  50. private Microsoft.WindowsAPICodePack.DirectX.Controls.DirectControl directControl;
  51. }
  52. }