WinformPocForm.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. namespace ListViewNativeArrowIconPoC
  2. {
  3. partial class WinformPocForm
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem(new string[] {
  29. "Abc",
  30. "Def",
  31. "Ghi"}, -1);
  32. System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem(new string[] {
  33. "Def",
  34. "Ghi",
  35. "Abc"}, -1);
  36. System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem(new string[] {
  37. "123",
  38. "456",
  39. "789"}, -1);
  40. System.Windows.Forms.ListViewItem listViewItem8 = new System.Windows.Forms.ListViewItem(new string[] {
  41. "456",
  42. "789",
  43. "123"}, -1);
  44. this.MainListView = new System.Windows.Forms.ListView();
  45. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  46. this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  47. this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  48. this.SuspendLayout();
  49. //
  50. // MainListView
  51. //
  52. this.MainListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  53. this.columnHeader1,
  54. this.columnHeader2,
  55. this.columnHeader3});
  56. this.MainListView.Dock = System.Windows.Forms.DockStyle.Fill;
  57. this.MainListView.FullRowSelect = true;
  58. this.MainListView.GridLines = true;
  59. this.MainListView.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
  60. listViewItem5,
  61. listViewItem6,
  62. listViewItem7,
  63. listViewItem8});
  64. this.MainListView.Location = new System.Drawing.Point(0, 0);
  65. this.MainListView.Name = "MainListView";
  66. this.MainListView.Size = new System.Drawing.Size(800, 450);
  67. this.MainListView.TabIndex = 0;
  68. this.MainListView.UseCompatibleStateImageBehavior = false;
  69. this.MainListView.View = System.Windows.Forms.View.Details;
  70. this.MainListView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.MainListView_ColumnClick);
  71. //
  72. // columnHeader1
  73. //
  74. this.columnHeader1.Text = "ColumnHeader1";
  75. this.columnHeader1.Width = 120;
  76. //
  77. // columnHeader2
  78. //
  79. this.columnHeader2.Text = "ColumnHeader2";
  80. this.columnHeader2.Width = 120;
  81. //
  82. // columnHeader3
  83. //
  84. this.columnHeader3.Text = "ColumnHeader3";
  85. this.columnHeader3.Width = 120;
  86. //
  87. // WInformPocForm
  88. //
  89. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  90. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  91. this.ClientSize = new System.Drawing.Size(800, 450);
  92. this.Controls.Add(this.MainListView);
  93. this.Name = "WInformPocForm";
  94. this.Text = "ListView Native Arrow Icon";
  95. this.ResumeLayout(false);
  96. }
  97. #endregion
  98. private System.Windows.Forms.ListView MainListView;
  99. private System.Windows.Forms.ColumnHeader columnHeader1;
  100. private System.Windows.Forms.ColumnHeader columnHeader2;
  101. private System.Windows.Forms.ColumnHeader columnHeader3;
  102. }
  103. }