DKButtonTreeView.Designer.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. namespace Dongke.IBOSS.PRD.Basics.BaseControls
  2. {
  3. partial class DKButtonTreeView
  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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DKButtonTreeView));
  30. this.panelMemu = new System.Windows.Forms.Panel();
  31. this.tvMemu = new System.Windows.Forms.TreeView();
  32. this.imglstNavigation = new System.Windows.Forms.ImageList(this.components);
  33. this.panelMemu.SuspendLayout();
  34. this.SuspendLayout();
  35. //
  36. // panelMemu
  37. //
  38. this.panelMemu.Controls.Add(this.tvMemu);
  39. this.panelMemu.Dock = System.Windows.Forms.DockStyle.Fill;
  40. this.panelMemu.Location = new System.Drawing.Point(0, 0);
  41. this.panelMemu.Name = "panelMemu";
  42. this.panelMemu.Size = new System.Drawing.Size(150, 150);
  43. this.panelMemu.TabIndex = 0;
  44. this.panelMemu.Layout += new System.Windows.Forms.LayoutEventHandler(this.panelMemu_Layout);
  45. //
  46. // tvMemu
  47. //
  48. this.tvMemu.ImageIndex = 0;
  49. this.tvMemu.ImageList = this.imglstNavigation;
  50. this.tvMemu.Indent = 20;
  51. this.tvMemu.ItemHeight = 20;
  52. this.tvMemu.Location = new System.Drawing.Point(14, 15);
  53. this.tvMemu.Name = "tvMemu";
  54. this.tvMemu.SelectedImageIndex = 0;
  55. this.tvMemu.Size = new System.Drawing.Size(121, 97);
  56. this.tvMemu.TabIndex = 0;
  57. this.tvMemu.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.tvMemu_AfterCollapse);
  58. this.tvMemu.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.tvMemu_AfterExpand);
  59. this.tvMemu.DoubleClick += new System.EventHandler(this.tvMemu_DoubleClick);
  60. //
  61. // imglstNavigation
  62. //
  63. this.imglstNavigation.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglstNavigation.ImageStream")));
  64. this.imglstNavigation.TransparentColor = System.Drawing.Color.Transparent;
  65. this.imglstNavigation.Images.SetKeyName(0, "close.png");
  66. this.imglstNavigation.Images.SetKeyName(1, "list.png");
  67. this.imglstNavigation.Images.SetKeyName(2, "open.png");
  68. //
  69. // DKButtonTreeView
  70. //
  71. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  72. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  73. this.Controls.Add(this.panelMemu);
  74. this.Name = "DKButtonTreeView";
  75. this.Load += new System.EventHandler(this.DKButtonTreeView_Load);
  76. this.panelMemu.ResumeLayout(false);
  77. this.ResumeLayout(false);
  78. }
  79. #endregion
  80. private System.Windows.Forms.Panel panelMemu;
  81. private System.Windows.Forms.TreeView tvMemu;
  82. private System.Windows.Forms.ImageList imglstNavigation;
  83. }
  84. }