MainForm.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. namespace Mtp2Dav
  2. {
  3. partial class MainForm
  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. this.components = new System.ComponentModel.Container();
  29. this.lvDevices = new System.Windows.Forms.ListView();
  30. this.lvcDeviceName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  31. this.lvcDeviceDescription = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  32. this.lvcDeviceRemark = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  33. this.ilIcon = new System.Windows.Forms.ImageList(this.components);
  34. this.btnRefresh = new System.Windows.Forms.Button();
  35. this.btnConnect = new System.Windows.Forms.Button();
  36. this.btnDisconnect = new System.Windows.Forms.Button();
  37. this.chkFullBuf = new System.Windows.Forms.CheckBox();
  38. this.cboDrive = new System.Windows.Forms.ComboBox();
  39. this.chkEnableRo = new System.Windows.Forms.CheckBox();
  40. this.chkMapDrive = new System.Windows.Forms.CheckBox();
  41. this.SuspendLayout();
  42. //
  43. // lvDevices
  44. //
  45. this.lvDevices.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  46. | System.Windows.Forms.AnchorStyles.Left)
  47. | System.Windows.Forms.AnchorStyles.Right)));
  48. this.lvDevices.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  49. this.lvcDeviceName,
  50. this.lvcDeviceDescription,
  51. this.lvcDeviceRemark});
  52. this.lvDevices.LargeImageList = this.ilIcon;
  53. this.lvDevices.Location = new System.Drawing.Point(16, 15);
  54. this.lvDevices.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  55. this.lvDevices.Name = "lvDevices";
  56. this.lvDevices.ShowItemToolTips = true;
  57. this.lvDevices.Size = new System.Drawing.Size(683, 199);
  58. this.lvDevices.SmallImageList = this.ilIcon;
  59. this.lvDevices.TabIndex = 0;
  60. this.lvDevices.TileSize = new System.Drawing.Size(600, 52);
  61. this.lvDevices.UseCompatibleStateImageBehavior = false;
  62. this.lvDevices.View = System.Windows.Forms.View.Tile;
  63. this.lvDevices.SelectedIndexChanged += new System.EventHandler(this.lvDevices_SelectedIndexChanged);
  64. //
  65. // lvcDeviceName
  66. //
  67. this.lvcDeviceName.Text = "DeviceName";
  68. //
  69. // lvcDeviceDescription
  70. //
  71. this.lvcDeviceDescription.Text = "Description";
  72. //
  73. // lvcDeviceRemark
  74. //
  75. this.lvcDeviceRemark.Text = "Remark";
  76. //
  77. // ilIcon
  78. //
  79. this.ilIcon.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
  80. this.ilIcon.ImageSize = new System.Drawing.Size(48, 48);
  81. this.ilIcon.TransparentColor = System.Drawing.Color.Transparent;
  82. //
  83. // btnRefresh
  84. //
  85. this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  86. this.btnRefresh.Location = new System.Drawing.Point(708, 15);
  87. this.btnRefresh.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  88. this.btnRefresh.Name = "btnRefresh";
  89. this.btnRefresh.Size = new System.Drawing.Size(105, 32);
  90. this.btnRefresh.TabIndex = 1;
  91. this.btnRefresh.Text = "Refresh";
  92. this.btnRefresh.UseVisualStyleBackColor = true;
  93. this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
  94. //
  95. // btnConnect
  96. //
  97. this.btnConnect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  98. this.btnConnect.Enabled = false;
  99. this.btnConnect.Location = new System.Drawing.Point(708, 142);
  100. this.btnConnect.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  101. this.btnConnect.Name = "btnConnect";
  102. this.btnConnect.Size = new System.Drawing.Size(105, 32);
  103. this.btnConnect.TabIndex = 1;
  104. this.btnConnect.Text = "Start";
  105. this.btnConnect.UseVisualStyleBackColor = true;
  106. this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
  107. //
  108. // btnDisconnect
  109. //
  110. this.btnDisconnect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  111. this.btnDisconnect.Enabled = false;
  112. this.btnDisconnect.Location = new System.Drawing.Point(708, 182);
  113. this.btnDisconnect.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  114. this.btnDisconnect.Name = "btnDisconnect";
  115. this.btnDisconnect.Size = new System.Drawing.Size(105, 32);
  116. this.btnDisconnect.TabIndex = 1;
  117. this.btnDisconnect.Text = "Stop";
  118. this.btnDisconnect.UseVisualStyleBackColor = true;
  119. this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click);
  120. //
  121. // chkFullBuf
  122. //
  123. this.chkFullBuf.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  124. this.chkFullBuf.AutoSize = true;
  125. this.chkFullBuf.Location = new System.Drawing.Point(708, 55);
  126. this.chkFullBuf.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  127. this.chkFullBuf.Name = "chkFullBuf";
  128. this.chkFullBuf.Size = new System.Drawing.Size(101, 19);
  129. this.chkFullBuf.TabIndex = 4;
  130. this.chkFullBuf.Text = "FBuf(Rel)";
  131. this.chkFullBuf.UseVisualStyleBackColor = true;
  132. //
  133. // cboDrive
  134. //
  135. this.cboDrive.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  136. this.cboDrive.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  137. this.cboDrive.FormattingEnabled = true;
  138. this.cboDrive.Items.AddRange(new object[] {
  139. "Z"});
  140. this.cboDrive.Location = new System.Drawing.Point(772, 110);
  141. this.cboDrive.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  142. this.cboDrive.Name = "cboDrive";
  143. this.cboDrive.Size = new System.Drawing.Size(40, 23);
  144. this.cboDrive.TabIndex = 5;
  145. //
  146. // chkEnableRo
  147. //
  148. this.chkEnableRo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  149. this.chkEnableRo.AutoSize = true;
  150. this.chkEnableRo.Location = new System.Drawing.Point(708, 82);
  151. this.chkEnableRo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  152. this.chkEnableRo.Name = "chkEnableRo";
  153. this.chkEnableRo.Size = new System.Drawing.Size(101, 19);
  154. this.chkEnableRo.TabIndex = 4;
  155. this.chkEnableRo.Text = "Enable RO";
  156. this.chkEnableRo.UseVisualStyleBackColor = true;
  157. //
  158. // chkMapDrive
  159. //
  160. this.chkMapDrive.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  161. this.chkMapDrive.AutoSize = true;
  162. this.chkMapDrive.Location = new System.Drawing.Point(708, 112);
  163. this.chkMapDrive.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  164. this.chkMapDrive.Name = "chkMapDrive";
  165. this.chkMapDrive.Size = new System.Drawing.Size(53, 19);
  166. this.chkMapDrive.TabIndex = 4;
  167. this.chkMapDrive.Text = "Map";
  168. this.chkMapDrive.UseVisualStyleBackColor = true;
  169. //
  170. // MainForm
  171. //
  172. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  173. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  174. this.ClientSize = new System.Drawing.Size(829, 231);
  175. this.Controls.Add(this.cboDrive);
  176. this.Controls.Add(this.chkMapDrive);
  177. this.Controls.Add(this.chkEnableRo);
  178. this.Controls.Add(this.chkFullBuf);
  179. this.Controls.Add(this.btnDisconnect);
  180. this.Controls.Add(this.btnConnect);
  181. this.Controls.Add(this.btnRefresh);
  182. this.Controls.Add(this.lvDevices);
  183. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  184. this.MaximizeBox = false;
  185. this.Name = "MainForm";
  186. this.Text = "Mtp2Dav";
  187. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
  188. this.Shown += new System.EventHandler(this.MainForm_Shown);
  189. this.ResumeLayout(false);
  190. this.PerformLayout();
  191. }
  192. #endregion
  193. private System.Windows.Forms.ListView lvDevices;
  194. private System.Windows.Forms.Button btnRefresh;
  195. private System.Windows.Forms.Button btnConnect;
  196. private System.Windows.Forms.Button btnDisconnect;
  197. private System.Windows.Forms.ImageList ilIcon;
  198. private System.Windows.Forms.ColumnHeader lvcDeviceName;
  199. private System.Windows.Forms.ColumnHeader lvcDeviceDescription;
  200. private System.Windows.Forms.ColumnHeader lvcDeviceRemark;
  201. private System.Windows.Forms.CheckBox chkFullBuf;
  202. private System.Windows.Forms.ComboBox cboDrive;
  203. private System.Windows.Forms.CheckBox chkEnableRo;
  204. private System.Windows.Forms.CheckBox chkMapDrive;
  205. }
  206. }